码迷,mamicode.com
首页 > Web开发 > 详细

jQuery拖拽功能

时间:2019-11-23 10:07:10      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:jquer   outer   pointer   sed   bsp   width   sem   alert   on()   

HTML:

<div></div>

CSS:

*{
    padding: 0;
    margin: 0;
}

div{
    width: 100px;
    height: 100px;
    background: #f00;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
}

JS:

$(‘div‘).mousedown(function(e) {
    // e.pageX
    var positionDiv = $(this).offset();
    var distenceX = e.pageX - positionDiv.left;
    var distenceY = e.pageY - positionDiv.top;
    //alert(distenceX)
    // alert(positionDiv.left);

    $(document).mousemove(function(e) {
        var x = e.pageX - distenceX;
        var y = e.pageY - distenceY;

        if (x < 0) {
            x = 0;
        } else if (x > $(document).width() - $(‘div‘).outerWidth(true)) {
            x = $(document).width() - $(‘div‘).outerWidth(true);
        }

        if (y < 0) {
            y = 0;
        } else if (y > $(document).height() - $(‘div‘).outerHeight(true)) {
            y = $(document).height() - $(‘div‘).outerHeight(true);
        }

        $(‘div‘).css({
            ‘left‘: x + ‘px‘,
            ‘top‘: y + ‘px‘
        });
    });

    $(document).mouseup(function() {
        $(document).off(‘mousemove‘);
    });
});

效果网址:

http://www.jq22.com/webqd1345

jQuery拖拽功能

标签:jquer   outer   pointer   sed   bsp   width   sem   alert   on()   

原文地址:https://www.cnblogs.com/0826sw/p/11915274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!