<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>animation 动画效果</title>
<style>
div{ font-family:Arial; font-size:72px; font-weight:bold; position:fixed; left:0; right:0; bottom:25px;;width:30px; height:30px; margin:auto; transform:rotate(90deg); animation:jt 0.3s infinite alternate 0.5s running;}
@keyframes jt{
from{ transform:translate(0,10px)}
to{ transform:translate(0,0)}
}
</style>
</head>
<body>
<div>></div>
</body>
</html>
woshiajuana
相关分类