Chunk Load Error

Tell us what’s happening:
On the last few lessons of Applied Visual Design I receive the following message:

ChunkLoadError: Loading chunk 9759 failed.
(missing: https://www.freecodecamp.org/94a69ac45d41f1e4fc2ac412768e551aaf43af0d-621ee2290cfda190dc4b.js)

Has anyone else experienced this problem? Is there a fix?

  **Your code so far**

<style>
.balls {
  border-radius: 50%;
  position: fixed;
  width: 50px;
  height: 50px;
  top: 60%;
  animation-name: jump;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
#red {
  background: red;
  left: 25%;
  animation-timing-function: linear;
}
#blue {
  background: blue;
  left: 50%;
  animation-timing-function: ease-out;
}
#green {
  background: green;
  left: 75%;
  animation-timing-function: cubic-bezier(0.311, 0.441, 0.444, 1.649);
}

@keyframes jump {
  50% {
    top: 10%;
  }
}
</style>
<div class="balls" id="red"></div>
<div class="balls" id="blue"></div>
<div class="balls" id="green"></div>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15

Challenge: Make Motion More Natural Using a Bezier Curve

Link to the challenge:

Hi,
Your code is correct. I checked it. what issue to have then?

make sure your browser is updated to the latest version and that you don’t have any extension that is interfering

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.