cssピクチャ/要素回転コード
910 ワード
コードの例:
from 0 to 360は時計回りに回転することを示します
from 360 to 0は反時計回りの回転を表す
3 sは回転速度を表す
<span style="font-size:18px;"><!DOCTYPE html>
<html lang="zh-cn">
<head>
<style>
@keyframes wml {
from {
transform:rotate(0);
-ms-transform:rotate(0);
-webkit-transform:rotate(0);
-o-transform:rotate(0);
-moz-transform:rotate(0)
}
to {
transform:rotate(360deg);
-ms-transform:rotate(360deg);
-webkit-transform:rotate(360deg);
-o-transform:rotate(360deg);
-moz-transform:rotate(360deg)
}
}.asd {
animation:wml 3s linear infinite;
-moz-animation:wml 3s linear infinite;
-webkit-animation:wml 3s linear infinite;
-o-animation:wml 3s linear infinite
}
</style>
</head>
<body>
<img class="asd" src="http://avatar.csdn.net/5/5/7/1_u013372487.jpg">
</body>
</html>
</span>
from 0 to 360は時計回りに回転することを示します
from 360 to 0は反時計回りの回転を表す
3 sは回転速度を表す