风车转动代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> /*创建动画名称*/ @keyframes rotate{ 0% { transform:rotate(0deg);/*旋转*/ /*matrix() 方法需要六个参数,包含数学函数,允许您:旋转、缩放、移动以及倾斜元素。有问题需请教老师*/ /*-webkit-transform:matrix(0,0.5,0,10,20,20);*/ } 100%{ /*旋转*/ transform:rotate(360deg); } } img:hover{ /* @keyframes 规定动画。 animation 所有动画属性的简写属性,除了 animation-play-state 属性。 animation-name 规定 @keyframes 动画的名称。 animation-duration 完成一个周期所花费的秒或毫秒。默认是 0。 animation-timing-function 规定动画的速度,默认是 "ease" 匀速是linear。 animation-delay 规定动画何时开始。默认是 0。 animation-iteration-count 规定动画被播放的次数,默认是 1,不限infinite。 animation-direction 规定动画是否在下一周期逆向地播放。默认是 "normal",逆向alternate。 animation-play-state 规定动画是否正在运行或暂停。默认是 "running",停止paused。 animation-fill-mode 规定对象动画时间之外的状态。 * */ /*animation-name: rotate; animation-duration: 2s; animation-timing-function: linear; animation-delay: 0s; animation-iteration-count: infinite; animation-direction: normal; animation-play-state: running;*/ /*animation 属性值 统一语法*/ animation:rotate 1.5s linear 0s infinite normal running; } img{ animation-play-state:paused; width: 500px; height: 500px; } </style> </head> <body> <img src="img/fengche2.png"> </body> </html>
风车转动效果