アニメーション中に少し問題がありdiv
ますoverflowed
。アニメーション中にスクロールが点滅します。
私は簡単な例を作りました:
$(".div-animate").on("click", function(e){
var toTop = 100,
toHeight = $(this).outerWidth(true) + toTop;
$(this).animate({
top: toTop,
height: toHeight
});
});
この小さな「スクロールの点滅」を防ぐにはどうすればよいですか?