Skip to content
This repository was archived by the owner on Sep 25, 2019. It is now read-only.

Commit edd55ea

Browse files
akshat-haritBouncey
authored andcommitted
fix(challenges): Fix animation-timing-function default from linear (#16690)
Closes #16684
1 parent a3c546e commit edd55ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

challenges/01-responsive-web-design/applied-visual-design.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2512,7 +2512,7 @@
25122512
"title": "Change Animation Timing with Keywords",
25132513
"description": [
25142514
"In CSS animations, the <code>animation-timing-function</code> property controls how quickly an animated element changes over the duration of the animation. If the animation is a car moving from point A to point B in a given time (your <code>animation-duration</code>), the <code>animation-timing-function</code> says how the car accelerates and decelerates over the course of the drive.",
2515-
"There are a number of predefined keywords available for popular options. For example, the default value is <code>linear</code>, which applies a constant animation speed throughout. Other options include <code>ease-out</code>, which is quick in the beginning then slows down, or <code>ease-in</code>, which is slow in the beginning, then speeds up at the end.",
2515+
"There are a number of predefined keywords available for popular options. For example, the default value is <code>ease</code>, which starts slow, speeds up in the middle, and then slows down again in the end. Other options include <code>ease-out</code>, which is quick in the beginning then slows down, <code>ease-in</code>, which is slow in the beginning, then speeds up at the end, or <code>linear</code>, which applies a constant animation speed throughout.",
25162516
"<hr>",
25172517
"For the elements with id of <code>ball1</code> and <code>ball2</code>, add an <code>animation-timing-function</code> property to each, and set <code>#ball1</code> to <code>linear</code>, and <code>#ball2</code> to <code>ease-out</code>. Notice the difference between how the elements move during the animation but end together, since they share the same <code>animation-duration</code> of 2 seconds."
25182518
],

0 commit comments

Comments
 (0)