我正在学习 css3 现在我可以在打开窗口的情况下运行动画,但是如果我单击任何类或 ID,我需要它,那么只有它会动画,请任何人帮助我
<html>
<div id="test" class="target animate">Try me</div>
<div class="fff" style="width:100px;height:100px;background:#4AB72F"><h3>click here</h3></div>
<style>
#test {
width:160px;
height:200px;
margin: 100px;
background:#68C6F2;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
#test.animate {
-moz-animation-name: test;
-moz-animation-duration: 1s;
}
@keyframes test{
from { -moz-transform: translateX(-100%) scale(.1) rotateY(-50deg);}
}
</style>
</html>
我正在使用 firefox 浏览器,可以很好地工作,但是如果我单击任何类或 id,我需要它才会动画,请任何人帮助我(或者你可以告诉我喜欢使用 jquery 这对我很有帮助)谢谢