简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"><link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <style> #myDIV { position: absolute; right: 0; width: 100px; height: 100px; background-color: coral; color: white; -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */ animation: mymove 5s infinite; } /* Chrome, Safari, Opera */ @-webkit-keyframes mymove { 50% {right: 500px;} } /* Standard syntax */ @keyframes mymove { 50% {right: 500px;} } </style> <p>right 属性支持动画效果。</p> <p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p> <p>逐步改变 DIV 元素的右边的位置,从 0 到 500px:<p> <div id="myDIV"> <h1>My DIV</h1> </div> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: