close

畫面不可滑動(顯示目前畫面),如有ScrollBar ,則鎖住使用 

測試可用版本: IE8+,FIREFOX,CHROME

測試不可用版本:IE7

CSS設定

html.noscroll {
    position: fixed; 
    overflow-y: scroll;
    width: 100%;
}

html.fixWindow {
    position: fixed;
    width: 100%;
}

JS設定

鎖住畫面

if ($(document).height() > $(window).height()) {
    $("html").addClass("noscroll");
}else{
    $("html").addClass("fixWindow"); 
}

解開畫面

if ($(document).height() > $(window).height()) {
     $("html").removeClass("noscroll");
 }else{
    $("html").removeClass("fixWindow");
}

 

參考:

http://stackoverflow.com/questions/8701754/just-disable-scroll-not-hide-it

arrow
arrow

    咪卡恰比 發表在 痞客邦 留言(0) 人氣()