0
當我在this page中向下滾動時,左側上下文菜單將同時切換其樣式。我如何使用jQuery實現這種效果?jQuery如何在網頁上滾動時更改contextmenu風格?
當我在this page中向下滾動時,左側上下文菜單將同時切換其樣式。我如何使用jQuery實現這種效果?jQuery如何在網頁上滾動時更改contextmenu風格?
var t = $("#anchor-point").offset().top;
$(document).scroll(function(){
if($(this).scrollTop() > t)
{
$('#voice2').css({"border-bottom":"2px solid #f4f5f8"});
$('#voice3').css({"border-bottom":"2px solid #2e375b"});
}
});
編碼快樂:)
很不錯的。謝謝!! –
那probabaly使用'滾動()'事件.REF完成:HTTP://api.jquery.com/scroll/ – dreamweiver