HOME


Mini Shell 1.0
Negocios La Pieza.DO | Registrate o Inicia Sesión

Inicie Sesión en su Cuenta de Negocios

Olvidó Contraseña?
DIR: /var/www/lapieza.do/assets/js/
Upload File :
Current File : /var/www/lapieza.do/assets/js/zoom-filter.js
 /**=====================
     zoom js
==========================**/
 if ($(window).width() > 991) {
     $('.product-main').on('afterChange', function (event, slick, currentSlide, nextSlide) {
         var img_url_temp = $(this).find('img').attr('src');
         var imgs = $('.image_zoom_cls');
         $('.zoomContainer').remove();
         imgs.removeData('elevateZoom');
         imgs.removeData('zoomImage');
         var temp_zoom_cls = '.image_zoom_cls-' + currentSlide;
         setTimeout(function () {
             $(temp_zoom_cls).elevateZoom({
                 zoomType: "inner",
                 cursor: "crosshair"
             });
         }, 200);
     });
 }
 if ($(window).width() > 991) {
     setTimeout(function () {
         $('.product-main img').elevateZoom({
             zoomType: "inner",
             cursor: "crosshair"
         });
     }, 100);
 }