當浏覽器移動到某個指定位置時,該圖層上浮,然後加入一個樣式,讓該div層定位於浏覽器頂部,需要的朋友可以參考下
使用該函數,必須集成於jquery包 原理:當浏覽器移動到某個指定位置時,該圖層上浮,然後加入一個樣式,讓該div層定位於浏覽器頂部 代碼如下: //控制頭部購物車的顯示 function fixshow(min_height){ min_height ? min_height = min_height : min_height = 830; $(window).scroll(function(){ var s = $(window).scrollTop(); if( s > min_height){ $("#proBuyTip").fadeIn(100); $(".fixtabwrap").addClass("topfixed"); }else{ $("#proBuyTip").fadeOut(200); $(".fixtabwrap").removeClass("topfixed"); }; }); }; 代碼如下: .topfixed { position: fixed !important; top: 0px; left: 0px; z-index: 999; width: 100%; background-color: white; position: absolute; _top: expression(eval(document.documentElement.scrollTop)); }