模仿手机qq空间头部向上滚动颜色加深

模仿手机qq空间头部向上滚动颜色加深

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="jquery.js"></script>
<style>
    .banner{
        position:fixed;
        top:0;left:0;
        width:100%;
        height:100px;
        background:blue;

    }
</style>
</head>
<body>
<div class="banner"></div>
<div style="height:5000px;background:green;"></div>
<script>
    $(".banner").css("opacity",'0')
    $(window).scroll(function(){
        var scrollTop=$(window).scrollTop();
        var screenHeight=$(window).height();
        $(".banner").css("opacity",scrollTop/screenHeight);
    })
</script>
</body>
</html>

  

相关文章:

  • 2021-04-17
  • 2021-07-19
猜你喜欢
  • 2021-07-08
  • 2021-05-25
  • 2021-08-01
  • 2021-09-30
  • 2021-09-02
  • 2022-12-23
相关资源
相似解决方案