欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

類似天貓商品詳情隨瀏覽器移動(dòng)的示例代碼

 更新時(shí)間:2014年02月27日 14:47:22   作者:  
當(dāng)瀏覽器移動(dòng)到某個(gè)指定位置時(shí),該圖層上浮,然后加入一個(gè)樣式,讓該div層定位于瀏覽器頂部,需要的朋友可以參考下
使用該函數(shù),必須集成于jquery包

原理:當(dāng)瀏覽器移動(dòng)到某個(gè)指定位置時(shí),該圖層上浮,然后加入一個(gè)樣式,讓該div層定位于瀏覽器頂部
復(fù)制代碼 代碼如下:

//控制頭部購(gòu)物車的顯示
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");
};
});
};

復(fù)制代碼 代碼如下:

.topfixed {
position: fixed !important;
top: 0px;
left: 0px;
z-index: 999;
width: 100%;
background-color: white;
position: absolute;
_top: expression(eval(document.documentElement.scrollTop));
}

相關(guān)文章

最新評(píng)論