Skip to content

Commit 42ef2a2

Browse files
committed
Multi-touch zoom fix
1 parent 2027f95 commit 42ef2a2

5 files changed

+16
-7
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- Hotkeys for next, previous and close buttons.
1212
- Closing after viewing of all images.
1313
- Preloading of next and previous images.
14+
- Multi-touch zoom.
1415
- Uses link's `href` or `data-href` attribute for large images.
1516
- Fully customizable styles.
1617
- Customizable bottom area.

abigimage.jquery.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* http://aeqdev.com/tools/js/abigimage/
3-
* v 1.2.7
3+
* v 1.2.8
44
*
55
* Copyright © 2014 Maksim Krylosov <[email protected]>
66
*
@@ -167,6 +167,7 @@
167167
minD,
168168
vert,
169169
touches,
170+
multi,
170171

171172
slideTransition = false,
172173
slideQueueFn = [null, null, null],
@@ -179,6 +180,7 @@
179180
y = 0;
180181
s = 1;
181182
vert = null;
183+
multi = false;
182184
if (opts.imgCSS) {
183185
img.css({zIndex: opts.imgCSS.zIndex});
184186
}
@@ -202,6 +204,7 @@
202204
img[0].addEventListener('touchstart', function(e) {
203205
if (!opened) return;
204206
if (e.touches.length > 1) {
207+
multi = true;
205208
k = dis(e);
206209
img.css({zIndex: opts.prevBtnBoxCSS.zIndex});
207210
} else {
@@ -262,8 +265,12 @@
262265

263266
if (!e.touches.length) {
264267
if (s <= opts.zoomMin) {
265-
if (dx >= -1 && dx <= 1 && dy >= -1 && dy <= 1) {
266-
slideNext(true);
268+
if (time <= 1 || (dx >= -1 && dx <= 1 && dy >= -1 && dy <= 1)) {
269+
if (multi) {
270+
slideAnimate(0, 0, 1);
271+
} else {
272+
slideNext(true);
273+
}
267274
} else {
268275
if (vert) {
269276
var ady = Math.abs(dy);

abigimage.jquery.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "abigimage",
3-
"version": "1.2.7",
3+
"version": "1.2.8",
44
"title": "ABigImage - view big versions of images",
55
"author": {
66
"name": "Maksim Krylosov",

abigimage.jquery.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ <h1>ABigImage</h1>
7474

7575
<p>ABigImage is jQuery plugin for viewing big versions of images.</p>
7676

77-
<p>Current version: <b>1.2.7</b> (2014-07-24).</p>
77+
<p>Current version: <b>1.2.8</b> (2014-07-24).</p>
7878

7979

8080

8181
<div class="coll">
8282
<ul>
83-
<li><a href="abigimage.jquery.js">abigimage.jquery.js</a> (16.6Kb)</li>
83+
<li><a href="abigimage.jquery.js">abigimage.jquery.js</a> (16.8Kb)</li>
8484
<li><a href="abigimage.jquery.min.js">abigimage.jquery.min.js</a> (7.7Kb)</li>
8585
<li>Project on <a href="https://github.com/Aequiternus/ABigImage">GitHub</a></li>
8686
</ul>
@@ -108,6 +108,7 @@ <h2>Features</h2>
108108
<li>Hotkeys for next, previous and close buttons.</li>
109109
<li>Closing after viewing of all images.</li>
110110
<li>Preloading of next and previous images.</li>
111+
<li>Multi-touch zoom.</li>
111112
<li>Uses link's <code>href</code> or <code>data-href</code> attribute for large images.</li>
112113
<li>Fully customizable styles.</li>
113114
<li>Customizable bottom area.</li>

0 commit comments

Comments
 (0)