下面是我的脚本,当我运行这个脚本时,我注意到发生了闪烁。特别是动画在 IE 中看起来特别糟糕。我知道闪烁是由于使用动画功能增加 div 大小而发生的。所以请指导我如何使下面的脚本动画看起来非常流畅。指导我需要在脚本中更改哪些代码,因此它的功能相同,但动画看起来很流畅。我不想要任何闪烁。谢谢
这是演示网址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;
});
});