久久久久久AV无码免费看大片,亚洲一区精品人人爽人人躁,国产成人片无码免费爱线观看,亚洲AV成人无码精品网站,为什么晚上搞的时候要盖被子

Jquery實現(xiàn)固定頂部導(dǎo)航欄

時間:2016-10-19 15:14:20 類型:JS/JQUERY
字號:    

<html>

<head>

    <title>scroll()函數(shù)用法</title>

<style>

#top{hieght:100px;width:100%}

.scro{position: fixed;z-index: 999999;box-shadow: 0 2px 3px #ccc;}

</style>

</head>

<body>

    <div id="top"></div>

</body>

</html>

<!--引入jq函數(shù)庫省略-->

<script>

<!--滾動時頂部導(dǎo)航固定-->
$(function(){
    $(window).scroll(function(){
        var scro = $(window).scrollTop();
        if(scro > 100)
            $('#top').addClass('scro');
        else
            $('#top').removeClass('scro');
    });
});

</script>