<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
position: relative;
animation: mymove 5s;
animation-play-state: paused;
}
@keyframes mymove {
from {left: 0px;}
to {left: 200px;}
}
</style>
</head>
<body>
<h1>animation-play-state 属性</h1>
<p>暂停动画:</p>
<div></div>
<p><strong>注意:</strong> animation-play-state 属性在 Internet Explorer 9 及更早版本中不受支持。</p>
</body>
</html>