我正在尝试构建一个简单的图像“click-n-drag”调整大小脚本。我不想使用 jquery UI,因为它添加了很多额外的 div,这些 div 会使文本混乱,并且需要额外的步骤来删除这些额外的 div。
该脚本有效,但是正如您在小提琴中注意到的那样,它非常跳动。
我一直在试图弄清楚如何获得它,以便它仅在鼠标“向下”(单击)时才在鼠标移动时调整大小,并且在鼠标向上时,停止调整大小并将变量重置回其原始起始位置。
提前致谢。对不起,这里的格式草率,小提琴更干净。
从这里获得原始代码:originalsource 我粘贴了原始代码,以便您可以清楚地看到它
这是 jsfiddle:jsfiddle
jQuery.fn.extend({
resize: function(params){
var jQ = jQuery;
return this.each(function(){
var clicked = false; //set to off
var start_x; //starting point of mouse
var start_y;
if(params && params['target']){ var resize = params['target'];} //if target passed then use that
else{ var resize = this; }
if(params && typeof(params['y']) != "undefined"){ var y = params['y'];} //if y passed then fix the max height
else{ var y = 1;}
if(params && typeof(params['x']) != "undefined"){ var x = params['x'];} //if x then fix width
else{ var x = 1;}
if(params && typeof(params['min_width']) != "undefined"){ var min_w = params['min_width'];}
else{ var min_w = 1;}
if(params && typeof(params['min_height']) != "undefined"){ var min_h = params['min_height'];}
else{ var min_h = 1;}
$(this).hover(
function(){$(this).css('cursor', 'move');},
function(){$(this).css('cursor','default');clicked=false;}
);
$(this).mousedown(function(e){
clicked = true;
start_x = Math.round(e.pageX - $(this).eq(0).offset().left);
start_y = Math.round(e.pageY - $(this).eq(0).offset().top);
});
$(this).mouseup(function(e){clicked = false;});
$(this).mousemove(function(e){
if(clicked){
var mouse_x = Math.round(e.pageX - $(this).eq(0).offset().left) - start_x;
var mouse_y = Math.round(e.pageY - $(this).eq(0).offset().top) - start_y;
var div_w = $(resize).width();
var div_h = $(resize).height();
var new_w = parseInt(div_w)+mouse_x;
var new_h = parseInt(div_h)+mouse_y;
if(x==1 || (typeof(x) == "number" && new_w < x && new_w > min_w) ){ $(resize).css('width', new_w+"px"); }
if(y==1 || (typeof(y) == "number" && new_h < y && new_h > min_h) ){ $(resize).css('height',new_h+"px"); }
start_x = Math.round(e.pageX - $(this).eq(0).offset().left);
start_y = Math.round(e.pageY - $(this).eq(0).offset().top);
}
});
});
}
});