我想在显示 (q2) 的同时为链接 (q2 ul li a) 运行动画,q2 将在页面加载时隐藏。
$('.q2').fadeIn(function(){
$('.q2 ul li a').animate({ borderSpacing : 1 }, {
step: function(now,fx) {
$(this).css('-webkit-transform','rotate('+(-1*200*now+200)+'deg) scale('+(now)+')');
$(this).css('-moz-transform','rotate('+(-1*200*now+200)+'deg) scale('+(now)+')');
$(this).css('transform','rotate('+(-1*200*now+200)+'deg) scale('+(now)+')');
},
duration:1500 }, 'linear')
});
});
在 css 中:
ul li a {
border-spacing: 0;
}