x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  animation: mymove 5s infinite;
}
@keyframes mymove {
  50% {text-shadow: 10px 20px 30px blue;}
}
</style>
</head>
<body>
<h1>text-shadow 的动画效果:</h1>
<p>逐渐更改 text-shadow 属性:<p>
<div id="myDIV">
  <h1>This is a header</h1>
  <p>This is a paragraph</p>
</div>
<p><b>注释:</b>CSS 动画在 Internet Explorer 9 以及更早版本中不起作用。</p>
</body>
</html>