如何开发一个jquery无闪烁的平滑动画

时间:2012-09-25 06:40:36

标签: jquery animation

下面是我的脚本,当我运行这个脚本时,我发现闪烁发生。特别是IE中的动画看起来更糟糕。我知道由于使用动画功能增加div大小而发生闪烁。所以请指导我如何使下面的脚本动画看起来非常流畅。指导我需要在我的脚本中更改哪些代码,因此它将起到相同的作用,但动画看起来很流畅。我不想要任何闪烁。感谢

这里是demo url http://jsfiddle.net/tridip/kPZrZ/2/

$(document).ready(function () {
        $('#lnk').click(function (e) {
            $('body').append('<div id="transition"></div>').show();

            var $t = $('#transition'),
            to = $(this).offset(),
            td = $(document);

            $t.css({
                top: to.top + 50,
                left: to.left + 50,
                display: 'block'
            }).animate({
                opacity: 1,
                top: td.height() / 2,
                left: td.width() / 2
            }, 600, function () {
                $(this).animate({
                    top: '-=75',
                    left: '-=50'
                }, 600);

                $('#transition').addClass("BusyStyles");
                setTimeout(function () {
                    $('#transition').animate({
                        top: (td.height() / 2) - 200/2,
                        left: (td.width() / 2) - 250/2,
                        width: 250,
                        height: 200
                    }, 600, function () {
                        //alert('pp');
                        // to do things   
                        $('#transition').removeClass("BusyStyles");
                        $('#transition').html('<b>Welcome...</b>');
                    });
                }, 1000);
            });

            $t.click(function (e) {
                //alert('pp');
                $(this).fadeOut('slow').remove();
            });
            return false;
        });


    });

0 个答案:

没有答案