美文网首页
jquery实现页面滑动到指定位置显示背景

jquery实现页面滑动到指定位置显示背景

作者: 寒冰助手 | 来源:发表于2020-05-14 12:00 被阅读0次

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>

<script>

    $(document).ready(function () {

        $(document).scroll(function () {

            var res = $(this).scrollTop();

            console.log(res)

            if (res >= 333 && window.screen.width > 500) {

                document.getElementsByClassName('roll')[0].style.cssText = "background-image: url(https://cdn.shopify.cn/s/files/1/0263/9436/1927/files/MU6.jpg?v=1574770098);background-repeat:no-repeat;background-attachment:fixed;background-size:100% auto;";

            } else {

                document.getElementsByClassName('roll')[0].style.background = "none";

            }

        })

    })

</script>

相关文章

网友评论

      本文标题:jquery实现页面滑动到指定位置显示背景

      本文链接:https://www.haomeiwen.com/subject/jjqtohtx.html