small modifications for space module
This commit is contained in:
parent
ff9f15535c
commit
7148a53dc8
|
@ -76,16 +76,18 @@
|
|||
cover.append(dragBox);
|
||||
}
|
||||
})
|
||||
|
||||
cover.on("mousemove",function(e){
|
||||
e.preventDefault();
|
||||
if(isDragging){
|
||||
diffX = e.offsetX - offsetX;
|
||||
diffY = e.offsetY - offsetY;
|
||||
currentDragBox.css({
|
||||
width : diffX + "px",
|
||||
height : diffY + "px"
|
||||
})
|
||||
if(diffX > 0 && diffY > 0){
|
||||
console.log(diffX,diffY);
|
||||
currentDragBox.css({
|
||||
width : diffX + "px",
|
||||
height : diffY + "px"
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -97,6 +99,7 @@
|
|||
btn = $("<button class='make-box-permanent btn-flat btn-flat-has-icon btn-flat-primary btn-flat-small absolute-center'><i class='fa fa-check'></i>OK</button>");
|
||||
btn.on("click",selectAreaOkBtnHandler);
|
||||
currentDragBox.append(btn);
|
||||
currentDragBox.addClass("hover");
|
||||
currentDragBox.hover(function(){
|
||||
$(this).addClass("hover");
|
||||
},function(){
|
||||
|
|
|
@ -88,24 +88,17 @@
|
|||
cover.append(dragBox);
|
||||
}
|
||||
})
|
||||
var tempX = 0,
|
||||
tempY = 0;
|
||||
cover.on("mousemove",function(e){
|
||||
e.preventDefault();
|
||||
if(isDragging){
|
||||
diffX = e.offsetX - offsetX;
|
||||
diffY = e.offsetY - offsetY;
|
||||
if(diffX > 0 && diffY > 0){
|
||||
console.log("Difference :", diffX, diffY);
|
||||
console.log("Old :", tempX, tempY);
|
||||
tempX = diffX;
|
||||
tempY = diffY;
|
||||
if(diffX >= tempX && diffY >= tempY){
|
||||
currentDragBox.css({
|
||||
width : diffX + "px",
|
||||
height : diffY + "px"
|
||||
})
|
||||
}
|
||||
console.log(diffX,diffY);
|
||||
currentDragBox.css({
|
||||
width : diffX + "px",
|
||||
height : diffY + "px"
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -123,6 +116,7 @@
|
|||
btn = $("<button class='make-box-permanent btn-flat btn-flat-has-icon btn-flat-primary btn-flat-small absolute-center'><i class='fa fa-check'></i>OK</button>");
|
||||
btn.on("click",selectAreaOkBtnHandler);
|
||||
currentDragBox.append(btn);
|
||||
currentDragBox.addClass("hover");
|
||||
currentDragBox.hover(function(){
|
||||
$(this).addClass("hover");
|
||||
},function(){
|
||||
|
|
Loading…
Reference in New Issue