JS 实现 ResizeBar,可拖动改变上下两个区域大小

 先上效果图:

 代码如下:

<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title>ResizeBar 上下移动</title>
    <script type='text/javascript' src='http://code.jquery.com/jquery-1.6.js'></script>

    <style type='text/css'>
        body,
        html {
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
        }

        #main {
            background-color: BurlyWood;
            position: absolute;
            height: 200px;
            right: 0;
            left: 0;
            top: 200px;
            margin-top: 10px;
        }

        #sidebar {
            background-color: IndianRed;
            margin-top: 10px;
            width: 100%;
            position: absolute;
            height: 200px;
            overflow-y: hidden;
        }

        #dragbar {
            position: absolute;
            bottom: 0;
            z-index: 100;
            background-color: black;
            height: 3px;
            width: 100%;
            cursor: row-resize;
        }

        #ghostbar {
            width: 100%;
            height: 3px;
            background-color: #000;
            opacity: 0.5;
            position: absolute;
            cursor: row-resize;
            z-index: 999
        }
    </style>

    <script type='text/javascript'>

        $(window).load(function () {
            var i = 0;
            var dragging = false;
            var $main = $('#main')

            $('#dragbar').mousedown(function (e) {
                console.log(e.pageY, '移动')
                e.preventDefault();
                dragging = true;
                var ghostbar = $('<div>', {
                    id: 'ghostbar',
                    css: {
                        height: '3px',
                        width: '100%',
                        top: $main.offset().bottom,
                        left: 0,
                    }
                }).appendTo('body');

                $('#mousestatus').html("mousedown" + i++);
                $(document).mousemove(function (e) {
                    console.log(e.pageY, '移动')
                    ghostbar.css("top", e.pageY + 2);

                });

            });

            $(document).mouseup(function (e) {
                $('#clickevent').html('in another mouseUp event' + i++);
                if (dragging) {
                    if(e.pageY < 200){
                        $('#sidebar').css("height", e.pageY + 2);
                        $main.css("top", e.pageY + 2);
                        $main.css("height", 200 + e.pageY - 2);
                    } 
                    if(e.pageY >= 200){
                        $('#sidebar').css("height", e.pageY + 2);
                        $main.css("top", e.pageY + 2);
                        $main.css("height", 410 - e.pageY - 2);
                    } 
                    if(e.pageY >= 400){
                        $('#sidebar').css("height", 400-2);
                        $main.css("top", 400);
                        $main.css("height", 0);
                        dragging = false;
                    }
           
                    $('#ghostbar').remove();
                    $(document).unbind('mousemove');

                    dragging = false;
                }
            });

        });

    </script>

</head>

<body>
    <div id="sidebar">
        上
        <div id="dragbar"></div>
    </div>

    <div id="main">
        下
    </div>

</body>

</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

IT博客技术分享

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值