zoukankan      html  css  js  c++  java
  • 滚动条监听事件

    $(function(){
    $(window).scroll(function(){
    var h=$("body").scrollTop();
    if(h>200){$(".aaa").css("top","0px");}else if(h<200){$(".aaa").css("top","100px");}
    })
    })

     
     
     
     
     
     
     <!DOCTYPE html>
    <html>
    <head>
        <title></title>
        <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>
        <script>
        window.onscroll = function () {
        var t = document.documentElement.scrollTop || document.body.scrollTop;
        if (t > 0&&t<500) {
        $(".aaa").css("height","50");
        } else if(t>500&t<1000) {
            $(".aaa").css("height","100");
      
         
        }
        </script>
        <style type="text/css">
        .aaa{background-color:red;height:80px;100px;position: fixed;top:100px}
        </style>
    </head>

    <body style="height:7500px">
    <div class="aaa"></div>
    </body>
    <ml> 
  • 相关阅读:
    ES6
    ES6
    ES6
    ES6
    ES6
    ES6
    ES6
    IOS 最新开发上架流程 以及发布打包注意事项
    JavaScript Arguments
    函数防抖和函数节流
  • 原文地址:https://www.cnblogs.com/benpaodegegen/p/6744069.html
Copyright © 2011-2022 走看看