HTML原生JavaScript实现Y轴拖动,可以左右拖动

位置会自适应调整根据#parent的高度进行自动计算

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

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>拖动</title>
</head>
<style>
    * {
        margin: 0;
        padding: 0;
    }

    #parent {
        margin-top: 100px;
        width: 300px;
        height: 250px;
        border: 1px solid #ccc;
        overflow: auto;
    }

    #drag {
        width: 10%;
        height: 10%;
        background-color: #007bff;
        color: #fff;
        text-align: center;
        line-height: 50px;
        cursor: move;
        position: relative;
    }

    #switch {
        border: none;
        margin-top: 10px;
        padding: 10px;
        background-color: #007bff;
        color: #fff;
        text-align: center;

    }

    .box {
        margin-left: 30%;
    }
</style>

<body>
    <div id="parent" class="box">
        <div id="drag"></div>

    </div>
    <div class="box">
        <button id="switch">切换位置</button>
        <p id="location">位置</p>
    </div>

    <script>
        // 获取父元素和拖动元素
        var parent = document.getElementById("parent");
        var drag = document.getElementById("drag");
        var switchBtn = document.getElementById("switch");

        // 定义初始变量
        var isDragging = false;
        var dragStart = 0;
        var dragOffset = 0;
        var isLeft = true;

        // 监听鼠标按下事件
        drag.addEventListener("mousedown", function (event) {
            isDragging = true;
            dragStart = event.clientY;
            dragOffset = drag.offsetTop - parent.getBoundingClientRect().top;
        });
        // 监听鼠标移动事件
        document.addEventListener("mousemove", function (event) {
            let parentHeight = parent.clientHeight;
            if (isDragging) {
                let dragPos = event.clientY - dragStart + dragOffset;
                if (dragPos < 0) {
                    dragPos = 0;
                }
                if (dragPos > parent.clientHeight - drag.clientHeight) {
                    dragPos = parent.clientHeight - drag.clientHeight;
                }
                let location = document.getElementById("location");
                let locationV = parseInt(dragPos / (parentHeight / 100)); 
                location.innerText = "位置:" + locationV + "%";
                drag.style.top = dragPos + "px";
                parent.scrollTop = dragPos;
            }
        });

        // 监听鼠标松开事件
        document.addEventListener("mouseup", function () {
            isDragging = false;
        });

        // 监听切换按钮点击事件
        switchBtn.addEventListener("click", function () {
            isLeft = !isLeft;
            let switchText = isLeft ? "切换位置" : "切换位置";
            switchBtn.innerText = switchText;
            if (isLeft) {
                drag.style.left = "0";
            } else {
                drag.style.left = parent.clientWidth - drag.clientWidth + "px";
            }
        });
    </script>
</body>


</html>

效果图:

评论

  1. TheSafeInternetSearch
    1 月前
    2025-2-21 18:32:08

    NNVM9dr4l5Y

  2. TheSafeInternetSearch
    1 月前
    2025-2-21 22:57:50

    3URZU5LkjQI

  3. TheSafeInternetSearch
    1 月前
    2025-2-21 23:09:56

    FGIhAEqCmpd

  4. TheSafeInternetSearch
    1 月前
    2025-2-21 23:15:38

    NbkWqJkBULR

  5. TheSafeInternetSearch
    1 月前
    2025-2-21 23:21:21

    dZJlzvbrZhR

  6. TheSafeInternetSearch
    1 月前
    2025-2-21 23:27:02

    d9Z6AfLVpX8

  7. TheSafeInternetSearch
    1 月前
    2025-2-21 23:32:48

    51hRp2pBEHL

  8. TheSafeInternetSearch
    1 月前
    2025-2-21 23:38:33

    3Dp3nh4yfIP

  9. TheSafeInternetSearch
    1 月前
    2025-2-21 23:44:14

    EFY5kTxk4Z4

  10. TheSafeInternetSearch
    1 月前
    2025-2-21 23:49:51

    gEboqBsQNue

  11. TheSafeInternetSearch
    1 月前
    2025-2-21 23:55:35

    bmIacW8vLtL

  12. TheSafeInternetSearch
    1 月前
    2025-2-22 0:01:17

    5TGGc3awlN8

  13. TheSafeInternetSearch
    1 月前
    2025-2-22 0:06:59

    ILfJ2Tt8uPc

  14. TheSafeInternetSearch
    1 月前
    2025-2-22 0:12:41

    0CSbI3S9721

  15. TheSafeInternetSearch
    1 月前
    2025-2-22 0:18:27

    9eytqJ21d0P

  16. TheSafeInternetSearch
    1 月前
    2025-2-22 0:24:06

    jYenjpYvyqN

  17. TheSafeInternetSearch
    1 月前
    2025-2-22 0:29:46

    sD7bdA3mfWI

  18. TheSafeInternetSearch
    1 月前
    2025-2-22 0:35:30

    vUfMRE5sgKl

  19. TheSafeInternetSearch
    1 月前
    2025-2-22 0:41:13

    PLRW0AZCUHf

  20. TheSafeInternetSearch
    1 月前
    2025-2-22 0:46:52

    HnZxg4tRUFc

  21. TheSafeInternetSearch
    1 月前
    2025-2-22 0:52:30

    BiEDwRq0BxU

  22. TheSafeInternetSearch
    1 月前
    2025-2-22 0:58:08

    eBz4j8n7uq5

  23. TheSafeInternetSearch
    1 月前
    2025-2-22 1:03:53

    NN3OhJppohS

  24. TheSafeInternetSearch
    1 月前
    2025-2-22 1:09:37

    dTxLk9AO0zx

  25. TheSafeInternetSearch
    1 月前
    2025-2-22 1:15:20

    l3FpOT1ZUUi

  26. TheSafeInternetSearch
    1 月前
    2025-2-22 1:21:01

    uqYZshCELRS

  27. TheSafeInternetSearch
    1 月前
    2025-2-22 1:26:44

    DIUoELpyrqF

  28. TheSafeInternetSearch
    1 月前
    2025-2-22 1:32:21

    r5EfIoA7cbF

  29. TheSafeInternetSearch
    1 月前
    2025-2-22 1:38:03

    L36QRrorhJX

  30. TheSafeInternetSearch
    1 月前
    2025-2-22 1:43:44

    a5ezAQqwkQ3

  31. TheSafeInternetSearch
    1 月前
    2025-2-22 1:49:24

    KFpB1AIC7u2

  32. TheSafeInternetSearch
    1 月前
    2025-2-22 1:55:01

    QpsnjRupN5N

  33. TheSafeInternetSearch
    1 月前
    2025-2-22 2:00:44

    Bbi7MEkR2qc

  34. TheSafeInternetSearch
    1 月前
    2025-2-22 2:06:28

    KOrM7WRRaHq

  35. TheSafeInternetSearch
    1 月前
    2025-2-22 2:12:12

    e7U0qmMTg0G

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇