jquery位置3-60

简介: jquery位置3-60

image.png

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="./js/jquery.min.js"></script>
    <style>
        .back {
            position: fixed;
            width: 50px;
            height: 50px;
            background-color: pink;
            right: 30px;
            bottom: 100px;
            display: none;
        }
        .container {
            width: 900px;
            height: 500px;
            background-color: skyblue;
            margin: 400px auto;
        }
    </style>
</head>
<body>
    <div class="back">返回顶部
    </div>
    <div class="container"></div>
    <script>
        $(function() {
            //被卷起了多少
            var boxTop = $(".container").offset().top;
            $(window).scroll(function() {
                    // console.log(11);
                    //$(document).scrollTop();
                    console.log($(document).scrollTop());
                    if ($(document).scrollTop() > boxTop) {
                        $(".back").fadeIn();
                    } else {
                        $(".back").fadeOut();
                    }
                })
                //返回顶部
            $(".back").click(function() {
                //$(document).scrollTop(0);
                $("body,html").stop().animate({
                    scrollTop: 0
                });
            })
        })
    </script>
</body>
</html>

image.png

相关文章
|
JavaScript 前端开发
jQuery 尺寸与位置操作
jQuery 尺寸与位置操作
jQuery 尺寸与位置操作
|
JavaScript
jquery位置2-59
jquery位置2-59
71 0
jquery位置2-59
|
JavaScript
jquery尺寸 位置大小-57
jquery尺寸 位置大小-57
76 0
jquery尺寸 位置大小-57
|
JavaScript
jquery位置1
jquery位置1
87 0
jquery位置1
|
Web App开发 JavaScript 索引
04-老马jQuery教程-DOM节点操作及位置和大小
1. jQuery创建DOM标签 1.1 DOM动态创建标签的方法 DOM时代我们通过document的createElement方法动态创建标签。创建标签后,动态的给他添加属性。例如代码: // 动态创建标签 var domDiv = document.
1317 0