英 美[pleweek]
n. ??; ? ?? vi .play, game; ??? ????; ??? ??? ???? 3?? ??: ??? ??: ?????
?? [steet] n.??, ??, ??, ?? vt. : states ???: states ?? ??: ???? ?? ??: ??? ?? ??: ???
CSS ????? ?? ?? ?? ???
animation-play-state ??? ???? ??
animation-play-state ??? ?????? ?? ??? ?? ?????? ??? ?????. animation-play-state: ?? ???; ?????? ?? ?????? ????, animation-play-state: ?? ??? ?????.
??: animation-play-state ??? ?????? ?? ??? ?? ?????? ??? ?????.
??: ??animation-play-state: Paused|running;
??: paused? ?????? ?? ?????? ?????. running? ?????? ?? ??? ?????.
??: JavaScript?? ? ??? ???? ?? ?? ?????? ?? ??? ? ????.
CSS ????? ?? ?? ?? ?
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 5s; animation-play-state:paused; /* Safari and Chrome */ -webkit-animation:mymove 5s; -webkit-animation-play-state:paused; } @keyframes mymove { from {left:0px;} to {left:200px;} } @-webkit-keyframes mymove /* Safari and Chrome */ { from {left:0px;} to {left:200px;} } </style> </head> <body> <p><strong>注釋:</strong>Internet Explorer 9 以及更早的版本不支持 animation-play-state 屬性。</p> <div></div> </body> </html>
???? ?? ?
??? ????? ??? "???? ??" ??? ?????