Im having trouble with passing this segment, Ive checked online and even this forum but have yet to find an answeer
This is my code:
.balls{
border-radius: 50%;
background: linear-gradient(
35deg,
#ccffff,
#ffcccc
);
position: fixed;
width: 50px;
height: 50px;
margin-top: 50px;
animation-name: bounce;
animation-duration: 2s;
}
animation-iteration-count: infinite;
#ball1 {
left: 27%;
animation-timing-function: linear; animation-timing-function:
cubic-bezier: (0.25, 0.25, 0.75, 0.75);
}
#ball2 {
left: 56%;
animation-timing-function: ease-out;
}
@keyframes bounce {
0% {
top: 0px;
}
100% {
top: 249px;
}
}
I keep getting: // running tests
The value of the animation-timing-function property for the element with the id ball1 should be the linear-equivalent cubic-bezier function.
When I run it
This is the link to the challenge:https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/learn-how-bezier-curves-work