我有一个两部分的问题:
1. 如何在单击时同时在 jQuery 多个转换(例如 scale() + rotate())中设置动画?
(我试过使用这样的step
功能:
$("target").animate({'left':'100px',myScaleProperty: 2, myRotationPreperty: 180}, {step: function(now,tween) {
if (tween.prop == myScaleProperty) {
$(this).css({'transform','scale('+now+')'})
}
if (tween.prop == myRotationProperty){
$(this).css({'transform','rotate('+now+'deg)'})
}
},duration:'slow','linear'})
2. 如何在 jQuery 上制作可逆动画(不定义另一个反向动画函数)?