这是代码:
45°
看到我每次单击按钮时都需要它来旋转它:0 到 45 - 45 到 90 - 90 到 135 等等等等,并且无限。
如果你们帮助我,那就太棒了。
<style type="text/css">
.classname {
-webkit-animation-name: cssAnimation;
-webkit-animation-duration:0.7s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease;
-webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes cssAnimation {
0% { -webkit-transform:scale(1) rotate(0deg); }
95% { -webkit-transform:scale(1) rotate(46deg); }
100% {-webkit-transform:scale(1) rotate(45deg); }
}
</style>
<script type="text/javascript">
function ani(){
document.getElementById('img').className ='classname';
}
</script>
<title>Untitled Document</title>
</head>
<body align="center">
<form type="button" onclick="ani()" style="position:relative;z-index:2" name="img" >
<img src="2.png" width="645" height="545" style="position:absolute;left:26.9%;top:-8%;z-index:1;"/>