%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 122.154.253.140 / Your IP : 216.73.216.138 Web Server : Microsoft-IIS/7.5 System : Windows NT SERVER02 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.6.31 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/activity/asoy/js/ |
Upload File : |
(function ($) {
"use strict";
// init jarallax parallax
var initJarallax = function () {
jarallax(document.querySelectorAll(".jarallax"));
jarallax(document.querySelectorAll(".jarallax-img"), {
keepImg: true,
});
}
// input spinner
var initProductQty = function(){
$('.product-qty').each(function(){
var $el_product = $(this);
var quantity = 0;
$el_product.find('.quantity-right-plus').click(function(e){
e.preventDefault();
var quantity = parseInt($el_product.find('.quantity').val());
$el_product.find('.quantity').val(quantity + 1);
});
$el_product.find('.quantity-left-minus').click(function(e){
e.preventDefault();
var quantity = parseInt($el_product.find('.quantity').val());
if(quantity>0){
$el_product.find('.quantity').val(quantity - 1);
}
});
});
}
// init Chocolat light box
var initChocolat = function () {
Chocolat(document.querySelectorAll('.image-link'), {
imageSize: 'contain',
loop: true,
})
}
// Animate Texts
var initTextFx = function () {
$('.txt-fx').each(function () {
var newstr = '';
var count = 0;
var delay = 0;
var stagger = 10;
var words = this.textContent.split(/\s/);
$.each( words, function( key, value ) {
newstr += '<span class="word">';
for ( var i = 0, l = value.length; i < l; i++ ) {
newstr += "<span class='letter' style='transition-delay:"+ ( delay + stagger * count ) +"ms;'>"+ value[ i ] +"</span>";
count++;
}
newstr += '</span>';
newstr += "<span class='letter' style='transition-delay:"+ delay +"ms;'> </span>";
count++;
});
this.innerHTML = newstr;
});
}
$(document).ready(function () {
initProductQty();
initJarallax();
initChocolat();
initTextFx();
$(".user-items .search-item").click(function () {
$(".search-box").toggleClass('active');
$(".search-box .search-input").focus();
});
$(".close-button").click(function () {
$(".search-box").toggleClass('active');
});
var breakpoint = window.matchMedia('(max-width:61.93rem)');
if (breakpoint.matches === false) {
var swiper = new Swiper(".main-swiper", {
slidesPerView: 1,
spaceBetween: 48,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
breakpoints: {
900: {
slidesPerView: 2,
spaceBetween: 48,
},
},
});
// homepage 2 slider
var swiper = new Swiper(".thumb-swiper", {
direction: 'horizontal',
slidesPerView: 6,
spaceBetween: 6,
breakpoints: {
900: {
direction: 'vertical',
spaceBetween: 6,
},
},
});
var swiper2 = new Swiper(".large-swiper", {
spaceBetween: 48,
effect: 'fade',
slidesPerView: 1,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
thumbs: {
swiper: swiper,
},
});
}
// product single page
var thumb_slider = new Swiper(".product-thumbnail-slider", {
slidesPerView: 5,
spaceBetween: 10,
// autoplay: true,
direction: "vertical",
breakpoints: {
0: {
direction: "horizontal"
},
992: {
direction: "vertical"
},
},
});
// product large
var large_slider = new Swiper(".product-large-slider", {
slidesPerView: 1,
// autoplay: true,
spaceBetween: 0,
effect: 'fade',
thumbs: {
swiper: thumb_slider,
},
pagination: {
el: ".swiper-pagination",
clickable: true,
},
});
}); // End of a document
$(window).load(function(){
$('.preloader').fadeOut();
});
})(jQuery);