Answers for "css animation delay aftyer completing the animatrioon"

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
0

css animation delay does not work

You've specified the -webkit versions in the wrong order.
The -webkit-animation replaces the delay rule 
that you just set up. Reverse the order so that the delay comes after.
Posted by: Guest on April-17-2021

Browse Popular Code Answers by Language