This repository has been archived by the owner on Oct 8, 2019. It is now read-only.
forked from asvd/dragscroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dragscroll.js
113 lines (101 loc) · 3.25 KB
/
dragscroll.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/**
* @fileoverview dragscroll-zoom - scroll area by dragging and zoom in~out
* @version 1.0.1
*
* @license MIT, see https://github.com/vv2t/dragscroll-zoom
* @copyright 2017 vv2t <vv2@tuta.io>
*
* This project began as a fork of dragscroll https://github.com/asvd/dragscroll
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['exports'], factory);
} else if (typeof exports !== 'undefined') {
factory(exports);
} else {
factory((root.dragscroll = {}));
}
})(this, function(exports) {
var _window = window;
var _document = document;
var mousemove = 'mousemove';
var mouseup = 'mouseup';
var mousedown = 'mousedown';
var EventListener = 'EventListener';
var addEventListener = 'add' + EventListener;
var removeEventListener = 'remove' + EventListener;
var newScrollX, newScrollY;
var dragged = [];
var reset = function(i, el) {
for (i = 0; i < dragged.length; ) {
el = dragged[i++];
el = el.container || el;
el[removeEventListener](mousedown, el.md, 0);
_window[removeEventListener](mouseup, el.mu, 0);
_window[removeEventListener](mousemove, el.mm, 0);
}
// cloning into array since HTMLCollection is updated dynamically
dragged = [].slice.call(_document.getElementsByClassName('dragscroll'));
for (i = 0; i < dragged.length; ) {
(function(el, lastClientX, lastClientY, pushed, scroller, cont) {
(cont = el.container || el)[addEventListener](
mousedown,
(cont.md = function(e) {
if (
!el.hasAttribute('nochilddrag') ||
_document.elementFromPoint(e.pageX, e.pageY) == cont
) {
pushed = 1;
lastClientX = e.clientX;
lastClientY = e.clientY;
e.preventDefault();
}
}),
0,
);
_window[addEventListener](
mouseup,
(cont.mu = function() {
pushed = 0;
}),
0,
);
_window[addEventListener](
mousemove,
(cont.mm = function(e) {
if (pushed) {
(scroller = el.scroller || el).scrollLeft -= newScrollX =
-lastClientX + (lastClientX = e.clientX);
scroller.scrollTop -= newScrollY =
-lastClientY + (lastClientY = e.clientY);
if (el == _document.body) {
(scroller = _document.documentElement).scrollLeft -= newScrollX;
scroller.scrollTop -= newScrollY;
}
}
}),
0,
);
})(dragged[i++]);
}
};
if (_document.readyState == 'complete') {
reset();
} else {
_window[addEventListener]('load', reset, 0);
}
exports.reset = reset;
});
function zoomIn(n) {
var imgSize = document.getElementById('dragsimg').style.width;
var zoom = Number(imgSize.replace(/[^0-9]/g, '')) + n;
document.getElementById('dragsimg').style.width = zoom + '%';
}
function zoomOut(n) {
var imgSize = document.getElementById('dragsimg').style.width;
if (Number(imgSize.replace(/[^0-9]/g, '')) <= 100) {
return false;
}
var zoom = Number(imgSize.replace(/[^0-9]/g, '')) - n;
document.getElementById('dragsimg').style.width = zoom + '%';
}