<!DOCTYPE html>charset="utf-8"W3Cschool教程(w3cschool.cn)div{width:100px;height:100px;background:red;position:relative;animation-name:mymove;animation-duration:5s;/* Safari and Chrome */-webkit-animation-name:mymove;-webkit-animation-duration:5s;}@keyframes mymove{from {left:0px;}to {left:200px;}}@-webkit-keyframes mymove /* Safari and Chrome */{from {left:0px;}to {left:200px;}}注释:Internet Explorer 9 以及更早的版本不支持 animation-name 属性。