I’m working on a little script that makes an object (div or img) moveable and zoomable within a given frame.
However I came across a few problems I’m not really sure of, because I’m a javascript beginner – so explanation of why those problems occure would be appreciated.
Problems:
- Calling the functions
start_drag()
,while_drag()
andstop_drag()
returnsundefined
– why is that? What should be returned? - The dragging and moving of the image does not work correctly – instead of clicking the mousebutton down and starting to move the image around, I have to click once and then start moving. Although I bound the
mousedown
event to the image. What did I do wrong? - Why is the moving part not working on mobile (the zooming works!)?
Please see my fiddle: https://jsfiddle.net/pow4ngbw/15/
Advertisement
Answer
Working fine now, was mainly the image css but found several errors (see the new img attribute), also added a few tweaks to make the dragging smoother.
JavaScript
x
48
48
1
2
var img_ele = null,
3
x_cursor = 0,
4
y_cursor = 0,
5
x_img_ele = 0,
6
y_img_ele = 0;
7
8
function zoom(zoomincrement) {
9
img_ele = document.getElementById('drag-img');
10
var pre_width = img_ele.getBoundingClientRect().width, pre_height = img_ele.getBoundingClientRect().height;
11
img_ele.style.width = (pre_width * zoomincrement) + 'px';
12
img_ele.style.height = (pre_height * zoomincrement) + 'px';
13
img_ele = null;
14
}
15
16
document.getElementById('zoomout').addEventListener('click', function() {
17
zoom(0.5);
18
});
19
document.getElementById('zoomin').addEventListener('click', function() {
20
zoom(1.5);
21
});
22
23
function start_drag() {
24
img_ele = this;
25
x_img_ele = window.event.clientX - document.getElementById('drag-img').offsetLeft;
26
y_img_ele = window.event.clientY - document.getElementById('drag-img').offsetTop;
27
28
}
29
30
function stop_drag() {
31
img_ele = null;
32
}
33
34
function while_drag() {
35
var x_cursor = window.event.clientX;
36
var y_cursor = window.event.clientY;
37
if (img_ele !== null) {
38
img_ele.style.left = (x_cursor - x_img_ele) + 'px';
39
img_ele.style.top = ( window.event.clientY - y_img_ele) + 'px';
40
41
console.log(img_ele.style.left+' - '+img_ele.style.top);
42
43
}
44
}
45
46
document.getElementById('drag-img').addEventListener('mousedown', start_drag);
47
document.getElementById('container').addEventListener('mousemove', while_drag);
48
document.getElementById('container').addEventListener('mouseup', stop_drag);
JavaScript
1
18
18
1
#drag-img {
2
cursor: move;
3
position: relative;
4
width: 500px;
5
height: 500px;
6
}
7
8
#container {
9
overflow: hidden;
10
background: red;
11
height: 500px;
12
width: 500px;
13
}
14
15
.button {
16
width: 200px;
17
height: 50px;
18
}
JavaScript
1
6
1
<div id="container">
2
<img ondragstart="return false" id="drag-img" src="http://www.patsoy.com/p/2015/09/geometric-patterns-f03phtdx.jpg" />
3
</div>
4
<input type="button" id="zoomout" class="button" value="Zoom out">
5
<input type="button" id="zoomin" class="button" value="Zoom in">
6