web页面滚动到某个元素,某元素向上平移一段距离的实现

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .parent {
            margin: 900px auto 500px;
            width: 800px;
            height: 600px;
            position: relative;
            background-color: #00ac61;
        }

        .cell-box1,.cell-box2 {
            position: relative;
            top: 15px;
            width: 400px;
            height: 300px;
            opacity: 0;
            background-color: palevioletred;
        }
        .cell-box2{
            background-color: blue;
        }
    </style>
       
    <script src="./requirejs/js/jquery-3.3.1.min.js"></script>
</head>
<body>
 
   
<div class="parent">
    <div class="cell-box1">子元素1</div>
    <div class="cell-box2">子元素2</div>
</div>
<script>
    $(function () {
        $(window).scroll(function () {
            slideUp($(".cell-box1"));
            slideUp($(".cell-box2"));
        });
        function slideUp(obj) {
            var targetHeight = obj.offset().top;   //目标元素到顶部的距离
            var scrollTop = $(window).scrollTop(); //页面滚动的距离
            if (scrollTop > targetHeight - $(window).height() + 100) {
                obj.animate({top:0, opacity: 1, filter: 'Alpha(opacity=90)'}, 800);
            }
        };
    });
</script>
</body>
</html>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值