Skip to content

Instantly share code, notes, and snippets.

@HoangLong22
Created September 24, 2020 08:07
Show Gist options
  • Save HoangLong22/8fad71d9a09413ad33458680d231e22a to your computer and use it in GitHub Desktop.
Save HoangLong22/8fad71d9a09413ad33458680d231e22a to your computer and use it in GitHub Desktop.
Elevate Zoom
<div class="zoom-left">
<img style="border:1px solid #e8e8e6;" id="zoom_03" src="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image3.png"
data-zoom-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image3.jpg"
width="411" />
<div class="clearfix"></div>
<a id="prev"> Previous </a>
<a id="next"> Next </a>
<div class="clearfix"></div>
<div id="gallery_01" style="width="500pxfloat:left; ">
<a href="#" class="elevatezoom-gallery active" data-update="" data-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image1.png"
data-zoom-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image1.jpg">
<img src="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image1.png" width="100" /></a>
<a href="#" class="elevatezoom-gallery"
data-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image2.png"
data-zoom-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image2.jpg"
><img src="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image2.png" width="100" /></a>
<a href="tester" class="elevatezoom-gallery"
data-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image3.png"
data-zoom-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image3.jpg">
<img src="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image3.png" width="100" />
</a>
<a href="tester" class="elevatezoom-gallery"
data-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image4.png"
data-zoom-image="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image4.jpg"
class="slide-content"
><img src="https://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image4.png" width="100" /></a>
</div>
//initiate the plugin and pass the id of the div containing gallery images
$("#zoom_03").elevateZoom({
gallery:'gallery_01',
cursor: 'pointer',
easing : true,
galleryActiveClass: 'active',
imageCrossfade: true,
loadingIcon: 'https://www.elevateweb.co.uk/spinner.gif'
});
//pass the images to Fancybox
$("#zoom_03").bind("click", function(e) {
var ez = $('#zoom_03').data('elevateZoom');
$.fancybox(ez.getGalleryList());
return false;
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://www.elevateweb.co.uk/wp-content/themes/radial/jquery.elevatezoom.min.js"></script>
/*set a border on the images to prevent shifting*/
#gallery_01 img{border:2px solid white;}
/*Change the colour*/
.active img{border:2px solid #333 !important;}
.clearfix {
display: block;
width: 100%;
float: left;
}
.zoom-left {
max-width: 412px;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment