0
- 我有一個頁面,顯示鼠標懸停我想要的網頁,移動到焦點的div一個div ....我得到幫助這裏做...
現在,我想要讓onfocus使用easing插件移動div並移動它。我不希望在有生如jQuery的動畫與放鬆
$('html, body').animate({ scrollTop: $('#box0').offset().top }, 1000);
使用「慢」如何申請緩解上述代碼
其次,我想這是從左至右的mouseenter滑出的div並在隱藏之前從右向左滑動。 這是我現在使用的。我知道有一個更好或最好的方式來實現我現在正在做的事情。
$("#app0").mouseenter(function() {
$("#lSection2").show('slide').delay(3000); //container for div of four
$("#boxContent0").slideDown(2000);$('html, body').animate({ scrollTop: $('#app0').offset().top }, 1000);// one of the divs within #lSection2
});
$('#boxContent0').mouseleave(function() {
$("#boxContent0").fadeOut(1000);
$("#lSection2").fadeOut(1000);
});
感謝您的幫助
感謝您的動畫鏈接...但懸停我試過了,沒有任何工作...我需要把一個.show()? –