我希望通过单击图像时触发的纯CSS3动画对div中存在的图像进行旋转动画。 动画应该持续一段时间。
答案 0 :(得分:1)
我可以想到的一个触发单击旋转的解决方案是使用复选框hack和keyframe animations - 请参阅DEMO
使用的HTML:
<div class='img-container'>
<input type='checkbox' name='t' id='t'><label for='t'></label>
<img src='http://imgsrc.hubblesite.org/hu/db/images/hs-1998-14-i-web.jpg'>
</div>
相关CSS:
.img-container {
position: relative;
width: 400px;
height: 295px;
}
.img-container input[type=checkbox] { display: none; }
.img-container input[type=checkbox] + label, .img-container img {
position: absolute;
min-width: 100%;
height: 100%;
}
.img-container input[type=checkbox] + label {
z-index: 2;
}
.img-container img { z-index: 1; }
.img-container input[type=checkbox] ~ img { animation: rev-rotate-img 1s; }
.img-container input[type=checkbox]:checked ~ img { animation: rotate-img 1s; }
@keyframes rotate-img { to { transform: rotate(360deg); } }
@keyframes rev-rotate-img { to { transform: rotate(-360deg); } }
答案 1 :(得分:0)
答案 2 :(得分:0)
您可以将@keyframes
与CSS3 animation
命令结合使用。一个简单的方法应如下所示:
-webkit-animation:
roll-over-rotate 400ms .1s 1 ease-in-out normal forwards,
roll-over-color 1000ms ease-out;
-moz-animation:
roll-over-rotate 400ms .1s 1 ease-in-out normal forwards,
roll-over-color 1000ms ease-out;
@-webkit-keyframes roll-over-rotate {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(90deg);
}
}
@-moz-keyframes roll-over-rotate {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(90deg);
}
}
首先定义webkit动画,然后引用动画功能,在其中定义所需的CSS3特定效果。
对于实例,您应该检查此实验的css部分:http://www.hellopixel.net/experiments/javascript/worley-noise/worley.html