Im working on a project for a product page but ive some issues that I tried to fix, but couldn't fix them.
I tried to make slideshow with bootstrap (Carousel) and tried too put the elevateZoom-Plus plugin in for the zoom effect, but when it goes to another slide it doesnt work, how can I fix that.
HTML:
<div class="carousel-inner" style=" text-align: center;">
<div class="carousel-item active">
<img class="zoom-img zoom_01"
src="img/voetbal-product-1-small.png"
data-zoom-image="img/voetbal-product-1.png"
width="411"/>
</div>
<div class="carousel-item">
<img class="zoom-img zoom_01"
src="img/voetbal-product-1-small.png"
data-zoom-image="img/voetbal-product-1.png"
width="411"/>
</div>
<div class="carousel-item">
<img class="zoom-img zoom_01"
src="img/voetbal-product-1-small.png"
data-zoom-image="img/voetbal-product-1.png"
width="411"/>
</div>
</div>
JS:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.rawgit.com/igorlino/elevatezoom-plus/1.1.6/src/jquery.ez-plus.js"></script>
<script type="text/javascript">
$('.zoom_01').first().ezPlus({
zoomWindowWidth: 200,
zoomWindowHeight: 200
});
</script>
The plugin: https://igorlino.github.io/elevatezoom-plus/
That the elevateZoom-Plus plugin will work for the one slide of the images, and i tried too put .first() infront if it, but still doesn't work.