Answers for "javascript to stop animation"

CSS
1

css animation stop

//Animation can be played or paused with the below css property.
.class / tag / #id {
animation-play-state: 'paused' / 'running';
}
Posted by: Guest on July-23-2021
0

stop keyframe animation javascript

// If you applied the animation the "body"
document.body.style.animationPlayState = "paused";
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language