图片360度旋转样式
css:
@-webkit-keyframes run{
from{
-webkit-transform:rotate(0deg);
}
to{
-webkit-transform:rotate(360deg);
}
}
img.style:
width: 98px;height:98px;-webkit-animation: run 5s linear 0s infinite;
css:
@-webkit-keyframes run{
from{
-webkit-transform:rotate(0deg);
}
to{
-webkit-transform:rotate(360deg);
}
}
img.style:
width: 98px;height:98px;-webkit-animation: run 5s linear 0s infinite;
