滚动到顶部固定
1 // 滚动到顶部固定 2 var navH = $(".fixedTop").offset().top; 3 $(".fixedTop").wrap("<div class='background-fixed'></div>"); 4 $('.flowDev').scroll(function () { 5 var scroH = $('.flowDev').scrollTop(); 6 if (scroH >= navH) { 7 $(".fixedTop").css({"position": "fixed", "top": 0}); 8 $(".fixedTop").css({"z-index": "999"}); 9 $(".fixedTop").css({"background": "#f4f4f4"}); 10 $(".fixedTop").css({"width": "94%"}); 11 } else if (scroH < navH) { 12 $(".fixedTop").css({"position": "static"}); 13 $(".fixedTop").css({"background": "#fff"}); 14 $(".fixedTop").css({"width": "100%"}); 15 } 16 });
一辈子很短,努力的做好两件事就好;第一件事是热爱生活,好好的去爱身边的人;第二件事是努力学习,在工作中取得不一样的成绩,实现自己的价值,而不是仅仅为了赚钱;