代码示例:(标识:cssref_anim_right)
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  position: absolute;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: coral;
  color: white;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  50% {right: 500px;}
}
</style>
</head>
<body>

<h1>right 的动画效果:</h1>

<p>逐渐将 DIV 元素的右侧位置从 0 改为 500px,然后再改回 0:<p>
<div id="myDIV">
  <h1>My DIV</h1>
</div>

<p><b>注释:</b>CSS 动画在 Internet Explorer 9 以及更早版本中不起作用。</p>

</body>
</html>
运行结果: