QTransform显示/隐藏

时间:2011-10-29 18:47:10

标签: jquery jquery-animate hide rotation show

我正在使用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 <--------------
});

1 个答案:

答案 0 :(得分:1)

animate添加回调:

$(document).ready(function(){
    $('#rotatehs').hide();
    $('#bkgimg')
        .css('translate', 100)
        .css('rotate', -1)
        .animate({rotate: '+=360deg'}, 4000, function() {
            $('#rotatehs').show();
        });
});