简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <style> #myDIV { height: 200px; background-color: lightblue; border: 1px solid black; animation: mymove 5s infinite; -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */ } /* Chrome, Safari, Opera */ @-webkit-keyframes mymove { 50% {margin-left: 50px;} } /* Standard syntax */ @keyframes mymove { 50% {margin-left: 50px;} } </style> <p>逐步改变 margin-left, 从 0px 到 50px :<p> <div id="myDIV"> This is my DIV element. </div> <p>margin-left 属性支持动画效果。</p> <p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: