菜单切换
FACESOHO知行者
心灵
记录
远方
赞赏工具
源代码:
点击运行
保存
<!DOCTYPE html> <html> <head> <style> #myDIV { width:300px; height:200px; border:1px solid black; -webkit-animation:mymove 5s infinite; /* Chrome, Safari, Opera */ animation:mymove 5s infinite; } /* Chrome, Safari, Opera */ @-webkit-keyframes mymove { 50% {border-left:15px solid lightblue;} } /* Standard syntax */ @keyframes mymove { 50% {border-left:15px solid lightblue;} } </style> </head> <body> <p>逐步改变 border-left 属性:<p> <div id="myDIV"></div> <p>border-left 是所有左边框属性的简写。</p> <p>可以使用独立的 border-left 的各个属性来查看动画效果。</p> <p><b>注意:</b>Internet Explorer 9 及更早 IE 版本不支持 CSS 动画。</p> </body> </html>
运行结果