ABigImage
is jQuery plugin for viewing big versions of images.
Current version 2.1.1 (2018-01-20).
href
or data-href
attribute for large images.onopen
and onclose
event.Live example, where I'm using and testing this plugin at the moment: kawaiinyan.com.
Add jQuery and ABigImage scripts, and ABigImage styles at your page.
<script src="jquery.js"></script>
<script src="abigimage.jquery.js"></script>
<link rel="stylesheet" href="abigimage.jquery.css">
Call plugin on selector of enlargeable images links.
$(function(){
/* all links with class "myimgclass" */
$('.myimgclass').abigimage();
/* or all links inside element with class "myimgboxclass" */
$('.myimgboxclass a').abigimage();
/* or all links to "*.jpg" images */
$('a[href$=".jpg"]').abigimage();
/* or all links to images under dir "/my/images/dir/" */
$('a[href^="/my/images/dir/"]').abigimage();
});
duration
- effects duration (default: 200
).slideWidth
- slide width to switch or close image (between 0 and 1, default: 0.4).slideVelocity
- slide velocity to switch or close image (pixels per millisecond, default: 0.4).zoomMin
- minimal zoom that will hold (default: 1.5).zoomMax
- maximal zoom (default: 5).zoomClose
- zoom that will close image (default: 0.9).zoomMoveViewport
- area for mouse moving when zoomed (default: 0.9).zoomVelocity
- zoom velocity on scroll or press button (pixels per millisecond, default: .04).doubleTapInterval
- zoom double-tap interval (milliseconds, default: 400).prevBtnHtml
- html of "previous" button (default: ←
).nextBtnHtml
- html of "next" button (default: →
).zoomInBtnHtml
- html of "zoom in" button (default: +
).zoomOutBtnHtml
- html of "zoom out" button (default: −
).closeBtnHtml
- html of "close" button (default: ×
).keyNext
- hotkeys for "next" button (default: 13 enter, 32 space, 39 right, 40 down).keyPrev
- hotkeys for "previous" button (default: 8 backspace, 37 left, 38 up).keyClose
- hotkeys for "close" button (default: 27 escape, 35 end, 36 home).onopen
- function called when image opens.onclose
- function called when image closes.To change styles use CSS classes of plugin's elements:
<div class="abigimage-overlay"></div>
<div class="abigimage-layout">
<div class="abigimage-wrapper">
<div class="abigimage-box">
<!-- prevBtnBox - clickable behind the image, width 50% -->
<div class="abigimage-prevBtnBox"></div>
<!-- closeBtnBox - clickable behind the image, width 50% -->
<div class="abigimage-closeBtnBox"></div>
<img class="abigimage-img">
<img class="abigimage-imgNext">
<img class="abigimage-imgPrev">
</div>
</div>
<div class="abigimage-top">
<div class="abigimage-prevBtn"><!-- prevBtnHtml --></div>
<div class="abigimage-nextBtn"><!-- nextBtnHtml --></div>
<div class="abigimage-counter"></div>
<div class="abigimage-closeBtn"><!-- closeBtnHtml --></div>
<div class="abigimage-zoomOutBtn"><!-- zoomOutBtnHtml --></div>
<div class="abigimage-zoomInBtn"><!-- zoomInBtnHtml --></div>
</div>
<div class="abigimage-bottomBox">
<div class="abigimage-bottom"></div>
</div>
</div>
Function, defined as onopen
handler, executes in context of plugin, and receives target element as argument. Plugin elements available in this context as properties.
$('a[href$=".jpg"]').abigimage({
onopen: function (target) {
this.bottom.html(
/* bottom caption */
$('img', target).attr('alt') +
/* custom bottom area */
($('span', target).html() || '')
);
}
});
If you want different link for plugin's big image and for non-javascript clients (search engines or browsers without javascript) - use data-href
attribute:
<a href="/non_javascript_link.html" data-href="/images/big/myimage.jpg"> ... </a>
Also, you can use data-href
attribute on any element, not only links.
open([src], [index], [sel])
- open image by URL or index.next([sel])
- open next image.prev([sel])
- open previous image.close([sel])
- close image.unbind([sel])
- unbind plugin events./* open image by URL */
$.abigimage.open('/awesomeimage.jpg');
/* open image by index */
$.abigimage.open(2);
/* open image by URL at specified position */
$.abigimage.open('/awesomeimage.jpg', 5);
/* open next image */
$.abigimage.next();
/* open previous image */
$.abigimage.prev();
/* close image */
$.abigimage.close();
/* unbind plugin events */
$.abigimage.unbind();
All static methods by default tries to execute on current opened plugin insatnce, if no instances opened, tries to execute on last created instance. You can specify instance by passing it's selector in last argument sel
.
$myimgs1 = $('.myimgs1 a').abigimage();
$myimgs2 = $('.myimgs2 a').abigimage();
$.abigimage.open('/awesomeimage.jpg', null, $myimgs2);
$.abigimage.unbind($myimgs1);
head
, plugin now has lazy creation of it's dom.unbind
method.Copyright (c) 2014-2018 Maksim Krylosov aequiternus@gmail.com