Transitions and Transforms Flashcards
The keyword value _____ can be used to transition every animatable property in a CSS rule.
transition-property: all; (default)
What transition property defines how long a transition animation should take to complete?
transition-duration
Y/N: Is every CSS property an animatable property?
No
Y/N: Is it possible to define multiple transitions in one declaration?
Yes
What is used to specify the names of CSS properties that will be animated?
transition-property
How many values does the cubic-bezier function accept?
4
The default value for transition-timing-function is _____.
ease
What property can we use to increase or slow down the transition speed in its duration?
transition-timing-function
What is the correct order of point values for cubic-bezier?
cubic-bezier(P1x, P1y, P2x, P2y)
In the transition shorthand property, the second time value is considered the _____ value.
delay
Transition shorthand
property, duration, timing function, delay
Create a transition for the border-radius property of a div. Give the transition a duration of 2 seconds, a delay of 1 second, and a timing function that maintains a linear motion.
-webkit-transition: border-radius 2s linear 1s;
The default value of the transform-origin property is _____.
50% 50%
What are some of the angle units the rotate function accepts?
deg, grad, rad, turn
What transform function accepts one of various types of angle units as an argument?
rotate()