微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

当我将鼠标放在 JavaScript 上时,我需要重新定位方块我怎么做?

如何解决当我将鼠标放在 JavaScript 上时,我需要重新定位方块我怎么做?

A.在“init”函数添加当您将鼠标悬停在与 CSS 类“square”相关联的页面元素上时调用“reposition”函数所需的代码。 B.修改“重新定位”功能,以便您可以相对于对角线对称地重新定位正方形。 为此,只需反转此方块的水平和垂直位置即可。注意:粉红色方块不会移动,因为它正好在对角线上(水平和垂直位置相同)。

<!DOCTYPE html>
<html lang="fr">
<head>
    <Meta charset="UTF-8">
    <title>Reposition the squares</title>
    <style>
        #bac {
            position: relative;
            width: 400px;
            height: 400px;
            border: 1px solid red;
            text-align: center;
        }
        .square {
            width: 50px;
            height: 50px;
        }
        #square1 {
            position: absolute;
            left: 300px;
            top: 200px;
            background-color: red;
        }
        #square2 {
            position: absolute;
            left: 120px;
            top: 75px;
            background-color: blue;
        }
        #square3 {
            position: absolute;
            left: 50px;
            top: 240px;
            background-color: orange;
        }
        #square4 {
            position: absolute;
            left: 350px;
            top: 0px;
            background-color: black;
        }
        #square5 {
            position: absolute;
            left: 50px;
            top: 50px;
            background-color: pink;
        }
    </style>
    <script>
        function init() {
        //Code here

        }


        function reposition() {
        //code here
        }
    </script>
</head>
<body onload="init()">
    <h1>Reposition the squares</h1>
    <div id="bac">
        <div id="square1" class="square"></div>
        <div id="square2" class="square"></div>
        <div id="square3" class="square"></div>
        <div id="square4" class="square"></div>
        <div id="square5" class="square"></div>
    </div>
</body>
</html>

解决方法

你可以使用这个脚本

<script>
    const squares = document.querySelectorAll(".square");
    for(let i = 0; i < squares.length; i++){
        squares[i].addEventListener("mouseover",(e)=>{
            let v = getComputedStyle(squares[i]);
            let top = v.getPropertyValue('top').replace(/\D/g,"");
            let left = v.getPropertyValue('left').replace(/\D/g,"");;
            if(top == left){
                e.preventDefault();
            }
            else{
                squares[i].style.top = left+"px";
            }
        })
    }
</script>

首先我调用了所有的方块,然后我为每个方块创建了一个事件

第二,当我将鼠标放在其上时,我搜索了 top 和 left 属性

第三,我只从没有“px”的属性中得到数字,这是我使用正则表达式的原因

最后,我为每个不匹配的方格提供了相同的顶部和左侧值

也许有人可以给你一个简短的代码,但这是我的解决方案(我还是学生),它对我有用。

注意:橙色方块将隐藏在粉红色方块之下,因为两者将具有相同的顶部和左侧值。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。