fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> <style> #myDIV { height: 200px; background-color: lightblue; border: 1px solid black; -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */ animation: mymove 5s infinite; } /* Chrome, Safari, Opera */ @-webkit-keyframes mymove { 50% {margin-bottom: 50px;} } /* Standard syntax */ @keyframes mymove { 50% {margin-bottom: 50px;} } </style> </head> <body> <p>逐步改变 margin-bottom, 从 0px 到 50px :<p> <div id="myDIV"> This is my DIV element. </div> <p>margin-bottom 属性支持动画效果。</p> <p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p> </body> </html>
运行结果