mirror of
https://github.com/rystaf/mlmym.git
synced 2024-11-09 16:55:17 +00:00
min resize
This commit is contained in:
parent
e0d7290e51
commit
7d6212b663
|
@ -49,11 +49,13 @@ var startSize = [0,0]
|
||||||
document.onmousemove = function(e) {
|
document.onmousemove = function(e) {
|
||||||
if (resizeTarget) {
|
if (resizeTarget) {
|
||||||
resizeTarget.style.maxWidth = 'unset';
|
resizeTarget.style.maxWidth = 'unset';
|
||||||
let y = startSize[0] + (e.clientY - startCoordinates[1]) * 1.5
|
let y = startSize[0] + (e.clientY - startCoordinates[1]) *3
|
||||||
let x = startSize[1] + (e.clientX - startCoordinates[0]) * 1.5
|
let x = startSize[1] + (e.clientX - startCoordinates[0]) *3
|
||||||
let ratio = Math.min(y/startSize[0], x/startSize[1])
|
let ratio = Math.min(y/startSize[0], x/startSize[1])
|
||||||
resizeTarget.height = startSize[0]*ratio
|
let newY = startSize[0]*ratio
|
||||||
resizeTarget.width = startSize[1]*ratio
|
let newX = startSize[1]*ratio
|
||||||
|
resizeTarget.height = newY > 30 ? newY : 30
|
||||||
|
resizeTarget.width = newX > 30 ? newX : 30
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
document.onmouseup = function(e){
|
document.onmouseup = function(e){
|
||||||
|
|
Loading…
Reference in a new issue