Answers for "how to use delay"

CSS
3

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
2

how create a delay for html js

console.log("Hello");
setTimeout(() => {  console.log("World!"); }, 2000);
Posted by: Guest on August-18-2020

Browse Popular Code Answers by Language