js delay animation code example
Example 1: delay in js
var delayInMilliseconds = 1000; //1 second
setTimeout(function() {
//your code to be executed after 1 second
}, delayInMilliseconds);
Example 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;
}
Example 3: delay in javascript
setTimeout(function() {
//your code here
}, 1000);