<html>
<head>
<style>
#myDIV {
position: absolute;
left: 0;
width: 100px;
height: 100px;
background-color: coral;
color: white;
animation: mymove 5s infinite;
}
@keyframes mymove {
50% {left: 500px;}
}
</style>
</head>
<body>
<h1>left 左侧动画</h1>
<p>逐渐将 DIV 元素的左侧位置 left 从 0 更改为 500px,然后再更改回 0:<p>
<div id="myDIV">
<h1>My DIV</h1>
</div>
<p><b>注意:</b> CSS 动画在 Internet Explorer 9 和更早版本中不起作用。</p>
</body>
</html>