Answers for "how to stop animation running on [page load css"

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

css disable animation on load

transition: all 0.3s ease-out;
  transition-property: transform, background-color, color;
Posted by: Guest on January-09-2021

Code answers related to "how to stop animation running on [page load css"

Browse Popular Code Answers by Language