Test of CSS knowledge - Part 9
- Question 1: Which of the following attributes determines the period during which the transition takes place?
- transition
- transition-duration
- transform-duration
- transition-property
-
- Question 2: Which attribute is used to determine the delay between the time a property changes and when the transition actually begins.
- transform-delay
- transition-delay
- transform-duration
- There is no exact answer.
-
- Question 3: Which of the following transform properties are used to handle a 2D moving effect?
- translate (x, y)
- translate2d (x, y)
- translate3d (x, y)
-
All of the above answers are correct.
-
- Question 4: Which of the following transform properties are used only to move the element along the X axis?
- translate (x)
- translateZ (x)
- translateY (x)
- translateX (x)
-
- Question 5: Which of the following transform properties are used to handle 3D transformations to change the width and height of the element?
- circle (x, y, z)
- scale3d (x, y, z)
- rotate3d (x, y, z, angle)
- rotate (angle)
-
- Question 6: Which of the following transform properties are used in 2D transformations to skew an element by X axis and Y axis?
- scale (x-angle, y-angle)
- rotate (x-angle, y-angle)
- skew (x-angle, y-angle)
- There is no exact answer
-
- Question 7: Which of the following transform properties are used to handle 3D transforms using a 4 × 4 matrix of 16 values?
- matrix3d (n, n, n, n, n, n, n, n, n, n, n, n, n, n, n, n)
- matrix (n, n, n, n, n, n, n, n, n, n, n, n, n, n, n, n)
- matrix2d (n, n, n, n, n, n, n, n, n, n, n, n, n, n, n, n)
- All of the above answers are correct.
-
- Question 8: Which of the following transform properties are used in 3D transformations to rotate an element along the Z axis?
- rotate-Z (angle)
- skew-Z (angle)
- rotateZ (angle)
- skewZ (angle)
-
- Question 9: Which of the following transform properties are used in 3D transformations to rotate an element?
- rotate3d (x, y, z, angle)
- rotated (x, y, z, angle)
- rotate-all (x, y, z, angle)
- rotate (x, y, z, angle)
-
- Question 10: Which transition-timing-function values are used to determine the conversion speed at the end?
- ease
- linear
- ease-out
- ease-in
-
5 ★ | 1 Vote