我正在使用puppybits jQuery插件QTransform来旋转/动画元素(https://github.com/puppybits/QTransform)。旋转完成后,除了旋转之外,我的每件事都有效。
以下是代码:
$(document).ready(function(){
$('#rotatehs').hide();
$('#bkgimg')
.css('translate', 100)
.css('rotate', -1)
.animate({rotate: '+=360deg'}, 4000)
--------------> add show after rotate complete ('#rotatehs') here <--------------
});
答案 0 :(得分:1)
向animate添加回调:
$(document).ready(function(){
$('#rotatehs').hide();
$('#bkgimg')
.css('translate', 100)
.css('rotate', -1)
.animate({rotate: '+=360deg'}, 4000, function() {
$('#rotatehs').show();
});
});