電商滑鼠滾動樓層顯示

來源:互聯網
上載者:User

標籤:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
<style type="text/css">
*{ margin:0; padding:0;}
 body{ _background-attachment:fixed; _background-image:url(about:blank);}/*實現IE6不相容fixed閃動問題*/
.header{ width:1000px; height:500px; background:red; margin:0 auto;}
.first,.second,.three,.four {width:1000px;  margin:0 auto; height:800px; margin-top:20px; background:#0FF;}
.fixBox { width:50px; position:fixed; _position:absolute; _bottom:30%; _left:5%; _top:expression((offsetParent.scrollTop)+50); bottom:30%; left:5%; height: atuo;}
.fixBox ul { width:50px; height:100px;}
.fixBox ul li { list-style:none; height:30px; line-height:30px; background:#ccc; text-align:center;}
.fixBox ul li.show{ background:#F63;}
</style>
<script src="http://sz189.cn/promotion/js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
    var first=$(".first").offset().top;
    var second=$(".second").offset().top;
    var three=$(".three").offset().top;
    var four=$(".four").offset().top;
    $(window).scroll(function(){
        if($(this).scrollTop() <=first){
            $(".show1").addClass("show").siblings().removeClass("show");
        }else if($(this).scrollTop() >=first&&$(this).scrollTop()<=second){
            $(".show2").addClass("show").siblings().removeClass("show");
        }else if($(this).scrollTop()>=second&&$(this).scrollTop()<=three){
            $(".show3").addClass("show").siblings().removeClass("show");
        }else if($(this).scrollTop()>=three && $(this).scrollTop()<=four){
            $(".show4").addClass("show").siblings().removeClass("show");
        }
    });    
});

</script>
</head>

<body>
<div class="header"></div>
<div class="first"></div>
<div class="second"></div>
<div class="three"></div>
<div class="four"></div>

<!--右側導航-->
<div class="fixBox">
    <ul>
        <li class="show1">1</li>
        <li class="show2">2</li>
        <li class="show3">3</li>
        <li class="show4">4</li>
    </ul>
</div>

</body>
</html>

 

ps:代碼還可以最佳化~~

電商滑鼠滾動樓層顯示

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.