jQuery 元素拖拽改变大小

18 篇文章 0 订阅
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>jQuery 元素拖拽改变大小</title>
    <!--引用jquery-->
    <script src="jquery-1.7.1.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        /*
        * jQuery.Resize by wuxinxi007
        * Date: 2011-5-14
        * blog : http://wuxinxi007.cnblogs.com/
        */
        jQuery(document).ready(function (){
            //绑定需要拖拽改变大小的元素对象
            bindResize(document.getElementById('test'));
        });
        function bindResize(el)
        {
            //初始化参数
            //var els = el.style,
            //鼠标的 X 和 Y 轴坐标
            x =  0;
            //邪恶的食指
            jQuery(el).mousedown(function (e)
            {
                diwwidth = jQuery(el).prev().children().width();
                //按下元素后,计算当前鼠标与对象计算后的坐标
                  x = e.clientX;
                //在支持 setCapture 做些东东
                el.setCapture ? (
                //捕捉焦点
                    el.setCapture(),
                //设置事件
                    el.onmousemove = function (ev)
                    {
                        mouseMove(ev || event);
                    },
                    el.onmouseup = mouseUp
                ) : (
                    //绑定事件
                    jQuery(document).bind("mousemove", mouseMove).bind("mouseup", mouseUp)
                );
                //防止默认事件发生
                e.preventDefault();

            });

            //移动事件
            function mouseMove(e){
                var newWidth = diwwidth + e.clientX - x;
                //宇宙超级无敌运算中...
                //els.width = e.clientX - x + 'px';
                if(newWidth<=80||newWidth>=700){
                    return false;
                }else{
                    jQuery(el).prev().children().width(newWidth);
                }
                
            }
            //停止事件
            function mouseUp()
            {
                //在支持 releaseCapture 做些东东
                el.releaseCapture ? (
                //释放焦点
                    el.releaseCapture(),
                //移除事件
                    el.onmousemove = el.onmouseup = null
                ) : (
                    //卸载事件
                    jQuery(document).unbind("mousemove", mouseMove).unbind("mouseup", mouseUp)
                );
            }
        }
    </script>
    <style type="text/css">
        #div01 {  top: 0; left: 0; width: 80px; height: 100px; background: #f1f1f1;
                text-align: center; line-height: 100px; border: 1px solid #CCC; height: 200px;}
    </style>
</head>
<body>
<table height="200" width="50">
<tr>
    <td>
        <div id="div01">
         这是内容
        </div>
    </td>
    <td width="20px" id="test" style="cursor: e-resize;background: red;"></td>
</tr>
</table>
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值