CSS3 animation-play-state 屬性
實例
暫停動畫:
div
{
animation-play-state:paused;
-webkit-animation-play-state:paused; /* Safari 和 Chrome */
}
瀏覽器支持
Internet Explorer 10、Firefox 以及 Opera 支持 animation-play-state 屬性。
Safari 和 Chrome 支持替代的 -webkit-animation-play-state 屬性。
注釋:Internet Explorer 9 以及更早的版本不支持 animation-play-state 屬性。
定義和用法
animation-play-state 屬性規(guī)定動畫正在運行還是暫停。
注釋:您可以在 JavaScript 中使用該屬性,這樣就能在播放過程中暫停動畫。
默認值: | running |
---|---|
繼承性: | no |
版本: | CSS3 |
JavaScript 語法: | object.style.animationPlayState="paused" |
相關頁面
CSS3 教程:CSS3 動畫