我正在学习 CSS3(使用 jQuery 和 CSS3)。如果我单击 CSS3 类,它正在工作,但第二次单击它不起作用。
<script src="jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="custom.css">
HTML:
div id="test" class="animate">Try me</div>
<div class="fff" style="width:100px;height:100px;background:#4AB72F"><h3>click here</h3></div>
jQuery:
$(document).ready(function(){
$(".fff").click(function(){
$("#test,.animate").css({"transition":"all 10s",
"-moz-animation-name":"test",
"-moz-animation-duration":"1s"});
});
});
CSS:
#test {
width:160px;
height:200px;
margin: 100px;
background:#68C6F2;
}
@keyframes test{
from { -moz-transform: translateX(100%) scale(.1) rotateY(90deg);}
}
这段代码有什么问题?