首页 > 编程语言 >JavaScript -- 总结 10 (小白)

JavaScript -- 总结 10 (小白)

时间:2024-08-09 11:23:07浏览次数:17  
标签:box 10 console log -- JavaScript height width var

MouseEvent属性

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        .box {
            width: 200px;
            height: 800px;
            border: 1px solid #000;
        }
    </style>
</head>

<body>

    <div class="box"></div>
    <script>
        var box = document.getElementsByClassName("box")[0];

        box.onclick = function (e) {
            // 事件对象
            // event 
            console.log(e);
            // 点击位置距离当前body可视区域的x,y坐标
            console.log(e.clientX);
            console.log(e.clientY);

            // 对于整个页面来说,包括了被卷去的body部分的长度,相对文档区域左上角距离
            console.log(e.pageX);
            console.log(e.pageY);

            // 点击位置距离当前电脑屏幕的x,y坐标
            console.log(e.screenX);
            console.log(e.screenY);

            // 鼠标相对于事件源元素的x,y坐标(光标相对于自身盒子内侧的坐标,不包括边框) 
            console.log(e.offsetX);
            console.log(e.offsetY);
        }
    </script>
</body>

</html>

元素的offset属性

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        .father {
            width: 400px;
            height: 400px;
            border: 1px solid #000;

            position: relative;
        }

        .box {
            width: 200px;
            height: 200px;
            background-color: #f00;
            padding: 30px;

            position: absolute;
            left: 40px;
            top: 100px;
        }
    </style>
</head>

<body>

    <div class="father">
        <div class="box"></div>
    </div>


    <script>
        var box = document.getElementsByClassName("box")[0];

        // 元素相对父元素上边的偏移
        console.log(box.offsetTop);
        // 元素相对父元素左边的偏移
        console.log(box.offsetLeft);

        // box.offsetLeft = 50;
        box.style.left = 80 + "px";

        // 自身包括padding 、 边框、内容区的宽度
        console.log(box.offsetWidth);
        // 自身包括padding 、 边框、内容区的高度
        console.log(box.offsetHeight);

        // 作为参照的父元素
        console.log(box.offsetParent);
    </script>
</body>

</html>

练习 点击按钮,盒子向右偏移

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .box {
            width: 200px;
            height: 200px;
            background-color: #f00;
            position: absolute;
            left: 0;
            top: 50px;
        }
    </style>
</head>

<body>

    <button>点击</button>

    <div class="box"></div>
    <script>
        // 每点击一次按钮,盒子向右偏移 10px
        var btn = document.getElementsByTagName("button")[0];
        var box = document.getElementsByTagName("div")[0];

        btn.onclick = function () {
            // 在当前位置再 + 10
            box.style.left = box.offsetLeft + 10 + "px";
        }
    </script>
</body>

</html>

元素的client属性

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        .father {
            width: 400px;
            height: 400px;
            border: 1px solid #000;
        }

        .box {
            width: 200px;
            height: 200px;
            background-color: #f00;

            border: 10px solid #0f0;

        }
    </style>
</head>

<body>

    <div class="father">
        <div class="box"></div>
    </div>


    <script>
        var box = document.getElementsByClassName("box")[0];

        // 内容可视区域的高度/宽度,也就是说页面浏览器中可以看到内容的这个区域的高度(不含边框,也不包含滚动条等边线)
        console.log(box.clientWidth);
        console.log(box.clientHeight);

        // 边框厚度
        console.log(box.clientLeft);
        console.log(box.clientTop);
    </script>
</body>

</html>

元素的scroll属性

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        .father {
            width: 400px;
            height: 400px;
            border: 1px solid #000;
            overflow: auto;
        }

        .box {
            width: 200px;
            height: 800px;
            background-color: #f00;
        }
    </style>
</head>

<body>

    <div class="father">
        <div class="box"></div>
    </div>


    <script>
        var father = document.getElementsByClassName("father")[0];
        var box = document.getElementsByClassName("box")[0];

        
        father.onscroll = function(){
            // // 被卷去的上侧距离
            // console.log(father.scrollTop);
            // // 被卷去的左侧距离
            // console.log(father.scrollLeft);

            console.log(father.scrollWidth);
            console.log(father.scrollHeight);

        }
    </script>
</body>

</html>

window坐标属性

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        .box {
            width: 200px;
            height: 2000px;
            background-color: pink;
        }
    </style>
</head>

<body>

    <div class="box"></div>
    <script>
        // 返回以像素为单位的窗口的内部宽度。
        console.log(window.innerWidth);
        console.log(window.innerHeight);

        // 获取当前页面相对于窗口显示区左上角的 Y 位置  页面滚动的距离
        console.log(window.pageYOffset);
        

        console.log(window.screen.width);
    </script>
</body>

</html>

放大镜

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .small {
            width: 400px;
            height: 400px;
            border: 1px solid #000;
            margin: 50px;

            position: relative;
        }

        .small img {
            width: 100%;
        }

        .mark {
            width: 100px;
            height: 150px;
            background-color: rgba(0, 0, 0, 0.3);

            position: absolute;
            left: 0;
            top: 0;

            /* display: none; */
        }

        .big {
            width: 300px;
            height: 450px;
            overflow: hidden;

            position: absolute;
            left: 410px;
            top: 0;

            /* display: none; */
        }

        .big img {
            width: 1200px;
            position: absolute;
            left: 0;
            top: 0;
        }

    </style>
</head>

<body>
    <div class="small">
        <img src="https://x.dscmall.cn/storage/data/gallery_album/140/images/140_P_1684805326420.jpg" alt="">

        <!-- 蒙版 -->
        <div class="mark"></div>

        <!-- 大图 -->
        <div class="big">
            <img src="https://x.dscmall.cn/storage/data/gallery_album/140/images/140_P_1684805326420.jpg" alt="" class="bigImg">
        </div>
    </div>

    <script>
        // 获取元素
        var small = document.getElementsByClassName("small")[0];
        var mark = document.getElementsByClassName("mark")[0];
        var big = document.getElementsByClassName("big")[0];
        var bigImg = document.getElementsByClassName("bigImg")[0];



        // 1.鼠标移入小图片,蒙版和放大图片显示
        // small.onmouseenter = function(){
        //     mark.style.display = "block";
        //     big.style.display = "block";
        // }

        // // 2.鼠标移出,隐藏
        // small.onmouseleave = function(){
        //     mark.style.display = "none";
        //     big.style.display = "none";
        // }

        // 3.鼠标移动时,蒙版跟着鼠标走
        small.onmousemove = function (e) {
            // console.log(e.offsetX);
            // offsetX offsetY 有弊端,不能用
            // console.log(e.clientX - small.offsetLeft - small.clientLeft);

            var markX = e.pageX - small.offsetLeft - small.clientLeft - mark.offsetWidth / 2;
            var markY = e.pageY - small.offsetTop - small.clientTop - mark.offsetHeight / 2;

            // 规定蒙版移动范围
            if (markX < 0) {
                markX = 0;
            }
            if (markY < 0) {
                markY = 0;
            }
            if (markX > small.clientWidth - mark.offsetWidth) {
                markX = small.clientWidth - mark.offsetWidth
            }
            if (markY > small.clientHeight - mark.offsetHeight) {
                markY = small.clientHeight - mark.offsetHeight
            }

            // 鼠标需要出现在蒙版中间
            mark.style.left = markX + "px";
            mark.style.top = markY + "px";

            // 放大图片跟蒙版同步
            // 计算比例
            var ratio = big.clientWidth / mark.offsetWidth;
            // 大图的偏移
            var imgX = markX * ratio;
            var imgY = markY * ratio;

            bigImg.style.left = -imgX + "px";
            bigImg.style.top = -imgY + "px";
        }
    </script>
</body>

</html>

楼层导航

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        * {
            margin: 0;
            padding: 0;
            text-align: center;
            font-size: 30px;
            font-weight: 800;
            list-style: none;
        }

        .nav {
            width: 100%;
            height: 60px;
            background-color: #000;
        }

        .banner {
            width: 1200px;
            height: 800px;
            background-color: aqua;
            margin: 0 auto;
            line-height: 800px;
        }

        .content1 {
            width: 1200px;
            height: 500px;
            background-color: orange;
            margin: 0 auto;
            line-height: 500px;
        }

        .content2 {
            width: 1200px;
            height: 500px;
            background-color: pink;
            margin: 0 auto;
            line-height: 500px;
        }

        .content3 {
            width: 1200px;
            height: 500px;
            background-color: skyblue;
            margin: 0 auto;
            line-height: 500px;
        }

        .content4 {
            width: 1200px;
            height: 500px;
            background-color: purple;
            margin: 0 auto;
            line-height: 500px;
        }

        .foot {
            width: 100%;
            height: 600px;
            background-color: #000;
        }

        ul {
            width: 100px;
            position: fixed;
            left: 200px;
            top: 50%;
            margin-top: -60px;
            display: none;
        }

        li {
            width: 100px;
            height: 30px;
            border: 1px solid #ccc;
            box-sizing: border-box;
            font-size: 16px;
            font-weight: normal;
            line-height: 30px;
        }
    </style>
</head>

<body>
    <div class="nav"></div>

    <div class="banner">banner</div>

    <div class="content content1">content1</div>
    <div class="content content2">content2</div>
    <div class="content content3">content3</div>
    <div class="content content4">content4</div>

    <div class="foot"></div>

    <ul>
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
    </ul>

    <script>

        // 获取元素
        var content = document.getElementsByClassName("content");
        var list = document.getElementsByTagName("li");
        var floor = document.getElementsByTagName("ul")[0];
        console.log(content[0].offsetTop);

        // 滚动,内容和楼层同步
        document.body.onscroll = function () {
            // 滚动距离
            // console.log(document.documentElement.scrollTop);
            var slength = window.pageYOffset;
            // 内容边界

            
            if (slength < content[0].offsetTop) {
                floor.style.display = "none";
            } else {
                floor.style.display = "block";
                for (var i = 0; i < content.length; i++) {
                    if (slength >= content[i].offsetTop) {
                        siblingFun();
                        list[i].style.backgroundColor = "red";
                    }
                }
            }

        }

        // 排他思想:干掉其他人,只留我自己
        // 封装排他函数
        function siblingFun() {
            for (var i = 0; i < list.length; i++) {
                list[i].style.backgroundColor = "#fff";
            }
        }

        // 楼层点击和内容同步
        for (var i = 0; i < list.length; i++) {

            // 保留 i 值
            list[i].index = i;

            list[i].onclick = function () {
                // 页面滚动距离 = content[i].offsetTop  
                // 事件中的 this 指向事件源
                console.log(this);
                document.documentElement.scrollTop = content[this.index].offsetTop;
            }
        }
    </script>
</body>

</html>

标签:box,10,console,log,--,JavaScript,height,width,var
From: https://blog.csdn.net/2301_78949452/article/details/140888603

相关文章

  • mysql分区表
    MySQL支持分区表,这允许将大型数据集分割成更小、更易管理的部分。分区表可以提高查询性能,因为查询可以仅在所需的分区上运行,并且可以简化数据维护,例如删除旧数据。以下是创建分区表的基本步骤:选择分区类型:RANGE分区:基于列值将数据划分到不同的分区。LIST分区:基于列值列表将数......
  • Flask request和response
    flask框架中request请求用法详解_flaskrequest-CSDN博客Flask处理响应内容_theviewfunctiondidnotreturnavalidresponse-CSDN博客reques常用的属性:如果是json格式的请求数据,则是采用request.data来获取请求体的字符串。如果是form表单的请求体,那么则可以使用request.......
  • 优化if/else
    一、策略模式策略模式(StrategyPattern)是一种行为设计模式,它允许你定义一系列算法,把每个算法封装起来,并让它们可以互相替换。这种模式使得算法可以在不影响客户端的情况下发生变化。在策略模式中,有三个主要的角色:策略接口(Strategy):通常是一个接口,定义了一个算法家族的所有算法......
  • OpenGauss部署案例之---OpenEuler 20.03部署OpenGauss企业版
    案例说明:在OpenEuler20.03系统,x86架构下部署OpenGauss5.0.1企业版单实例数据库。数据库版本:openGauss=#selectversion();version------------------------------------------------------------......
  • [数据结构] 划分树
    介绍划分树,一种数据结构,和线段树很像,常用来解决求区间第$k$小的问题,支持在线,但不支持修改,时间复杂度:建树$\Theta(n\logn)$+单次查询$\Theta(\logn)$,空间复杂度$\Theta(n\logn)$,在这种问题及其扩展问题上具有优良的性能,但其它问题就凸显出其局限性;思想划分......
  • JAVA多线程的使用和创建的几种方式
    Thrad创建和使用创建实体类,继承Thread实现run()方法调用start()方法publicclassThreadDemoextendsThread{Loggerlogger=LoggerFactory.getLogger(ThreadDemo.class);privateStringtaskName;publicStringgetTaskName(){return......
  • 关于虚树
    关于虚树瞎扯某些树上问题,给了巨多节点,而实际上它们之中只有小部分能做出贡献,其余都是些水军,为杀尽OIers的脑细胞做出努力考虑重新种一棵树,浓缩信息,简化节点个数,于是产生了虚树。大概是长这个样子:红色结点是我们选择的关键点,即能够做出贡献的点。红色和黑色结点都是虚树中......
  • docker搭建本地仓库
    环境准备:服务器:9.134.130.35私有仓库服务器,运行registry容器客户端:9.208.244.175测试客户端,用于上传、下载镜像文件测试搭建本地仓库mkdir/docker/registry-p--创建主机目录dockerrun-itd-v/docker/registry/:/docker/registry-p5000:5000--restart=always--......
  • spring boot下跨域安全配置
    1@Bean2publicFilterRegistrationBeancorsFilter(){3finalUrlBasedCorsConfigurationSourcesource=newUrlBasedCorsConfigurationSource();4finalCorsConfigurationconfig=newCorsConfiguration();5config.setAll......
  • SW转二维标注
    一、设置1:1导出   1.1打开需要转化的三维图 2.文件------从零件制作工程图 3.黄色纸张空白处右键----属性------ 4.选择需要视图放在图纸中  5.点击每个视图的红框虚线,设置比例为使用图纸比例,即上面我们设置的1:1(此外,点击显示样式中选择需要的显示图......