Answers for "Which of the following css property is used to define a delay before an animation starts? 2 points a. transform-delay b. delay-function a. delay-animation d. animation-delay"

CSS
2

css animation delay

/* Answer to: "css animation delay" */

/*
  The animation-delay property specifies a delay for the start of an animation.
*/

div {
  animation-delay: 2s;
}
Posted by: Guest on June-29-2020

Code answers related to "Which of the following css property is used to define a delay before an animation starts? 2 points a. transform-delay b. delay-function a. delay-animation d. animation-delay"

Browse Popular Code Answers by Language