Cubic-bezier function not working

Tell us what’s happening:
I have put the cubic-bezier function to (0, 0, 0.58, 1) as required for the challenge, but the computer won’t let me move on to the next challenge. Idk what is going on because I did it exactly as I’m supposed to.

  **Your code so far**

<style>
.balls{
  border-radius: 50%;
  position: fixed;
  width: 50px;
  height: 50px;
  margin-top: 50px;
  animation-name: bounce;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
#red {
  background: red;
  left: 27%;
  animation-timing-function: cubic-bezier: (0, 0, 0.58, 1);
}
#blue {
  background: blue;
  left: 56%;
  animation-timing-function: ease-out;
}
@keyframes bounce {
  0% {
    top: 0px;
  }
  100% {
    top: 249px;
  }
}
</style>
<div class="balls" id= "red"></div>
<div class="balls" id= "blue"></div>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36 Edg/98.0.1108.55

Challenge: Use a Bezier Curve to Move a Graphic

Link to the challenge:

Your code and The tutorial code:

animation-timing-function: cubic-bezier: (0, 0, 0.58, 1);
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
2 Likes

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