$(document).ready(function(){ $("#w_wbox-1534215710001").addClass("with_opacity_bg"); }); //滚动效果 function topNavScroll(){ //获取当前窗口滚动条顶部所在的像素值 并取整 var topScroll = Math.floor($(window).scrollTop()); //设置滚动多少像素后触发事件 var scrollDist = 800; //定义滚动条在向下滚动100像素后增加class if(topScroll >= scrollDist){ //滚动距离大于和等于距离顶部距离则增加class $('#w_wbox-1534215710001').addClass("fixedM").removeClass("with_opacity_bg"); } else{ //滚动距离小于距离顶部距离则移除class $('#w_wbox-1534215710001').removeClass("fixedM").addClass("with_opacity_bg"); } } $(window).on('scroll',function() { topNavScroll(); });