<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
border: 1px solid black;
width: 400px;
height: 100px;
-webkit-animation: mymove 5s infinite;
animation: mymove 5s infinite;
}
@-webkit-keyframes mymove {
50% {font: 40px bold;}
}
@keyframes mymove {
50% {font: 40px bold;}
}
</style>
</head>
<body>
<p>逐步改变 font 属性:<p>
<div id="myDIV">
<p>这是一个段落</p>
</div>
<p>font 属性是所有字体属性的简写。</p>
<p>font-size, font-weight, font-stretch, 和 line-height 属性支持动画效果。</p>
<p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p>
</body>
</html>