Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/imyrqtmy/public_html/ayusshiherbs/assets/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
//body preloader $(window).on('load', function () { setTimeout(function () { // allowing 3 secs to fade out loader $('.page-loader').fadeOut('slow'); }, 3500); }); //On Scroll Header fixed to top $(window).scroll(function () { if ($(window).scrollTop() >= 850) { $('header').addClass('fixed-top smooth'); } else { $('header').removeClass('fixed-top smooth'); } }); //mega menu Initialize $(window).on('load', function () { // initialization of HSMegaMenu component $('.js-mega-menu').HSMegaMenu({ event: 'hover', pageContainer: $('.container'), breakpoint: 767.98, hideTimeOut: 0 }); }); //hero slick slider $(document).ready(function () { $('.carouselhero').slick({ dots: true, arrows: true, infinite: true, autoplay: false, speed: 1000, fade: true, cssEase: 'linear', }).slickAnimation(); }); //hero - index dark - slick slider $(document).ready(function () { $('.carouselheroDark').slick({ centerMode: true, centerPadding: '60px', dots: true, arrows: false, autoplay: true, slidesToShow: 3, slidesToScroll: 1, responsive: [ { breakpoint: 1024, settings: { slidesToShow: 2, slidesToScroll: 1, centerMode: true, } }, { breakpoint: 767, settings: { slidesToShow: 1, slidesToScroll: 1, centerMode: true, } }, { breakpoint: 480, settings: { slidesToShow: 1, slidesToScroll: 1, centerMode: false, } } ] }); }); //testimonial slider single $(document).ready(function () { $('.carouselTestimonials').slick({ dots: true, arrows: true, infinite: true, speed: 500, slidesToShow: 1, slidesToScroll: 1, }); }); //testimonial slider $(document).ready(function () { $('.carouselTestimonials2').slick({ dots: true, arrows: false, infinite: true, speed: 500, slidesToShow: 2, slidesToScroll: 1, //prevArrow: $('.prev'), //nextArrow: $('.next'), responsive: [ { breakpoint: 1024, settings: { slidesToShow: 1, slidesToScroll: 1, } }, { breakpoint: 767, settings: { slidesToShow: 1, slidesToScroll: 1 } }, { breakpoint: 680, settings: { slidesToShow: 1, slidesToScroll: 1, } } ] }); }); //partner slider $(document).ready(function () { $('.carouselPartner').slick({ dots: false, arrows: false, infinite: true, autoplay: true, autoplaySpeed: 2000, slidesToShow: 5, slidesToScroll: 1, responsive: [ { breakpoint: 1024, settings: { slidesToShow: 3, slidesToScroll: 1, centerMode: true, } }, { breakpoint: 767, settings: { slidesToShow: 2, slidesToScroll: 1, centerMode: true, } }, { breakpoint: 480, settings: { slidesToShow: 1, slidesToScroll: 1, centerMode: true, } } ] }); }); //On Scroll back to top $(window).on('scroll', function () { // Back Top Button if ($(window).scrollTop() > 500) { $('.scrollup').addClass('back-top'); } else { $('.scrollup').removeClass('back-top'); } }); // On Click Section Switch // used for back-top $('[data-type="section-switch"]').on('click', function () { if (location.pathname.replace(/^\//, '') === this.pathname.replace(/^\//, '') && location.hostname === this.hostname) { var target = $(this.hash); if (target.length > 0) { target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); $('html,body').animate({ scrollTop: target.offset().top }, 1000); return false; } } }); // wow js $(document).ready(function () { wow = new WOW( { boxClass: 'wow', // default animateClass: 'animated', // default offset: 0, // default mobile: true, // default live: true // default } ) wow.init(); }); // video frame open popup jQuery(document).ready(function ($) { // Define App Namespace var popup = { // Initializer init: function () { popup.popupVideo(); }, popupVideo: function () { $('.video_model').magnificPopup({ type: 'iframe', mainClass: 'mfp-fade', removalDelay: 160, preloader: false, fixedContentPos: false, gallery: { enabled: true } }); // Image Gallery Popup $('.gallery_container').magnificPopup({ delegate: 'a', type: 'image', mainClass: 'mfp-fade', removalDelay: 160, callbacks: { beforeOpen: function () { // just a hack that adds mfp-anim class to markup this.st.image.markup = this.st.image.markup.replace('mfp-figure', 'mfp-figure mfp-with-anim'); this.st.mainClass = this.st.el.attr('data-effect'); } }, closeOnContentClick: true, preloader: false, fixedContentPos: false, gallery: { enabled: true } }); } }; popup.init($); }); // Search model $('.search-switch').on('click', function () { $('.search-model').fadeIn(400); }); $('.search-close-switch').on('click', function () { $('.search-model').fadeOut(400, function () { $('#search-input').val(''); }); }); // plus minus button $(document).ready(function () { $('.button-minus').click(function () { var $input = $(this).parent().find('input'); var count = parseInt($input.val()) - 1; count = count < 1 ? 1 : count; $input.val(count); $input.change(); return false; }); $('.button-plus').click(function () { var $input = $(this).parent().find('input'); $input.val(parseInt($input.val()) + 1); $input.change(); return false; }); }); // tooltip function const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]') const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl)); // Wishlist notify $('.wishlist').on("click", function () { $('.wish-notify').fadeIn().append('<p class="wish-note">Add product in <a href="shop-wishlist.html"> Wishlist</a> Successfully!</p>'); setTimeout(function () { $('.wish-note').fadeOut() }, 1000); }); // compare notify $('.compare').on("click", function () { $('.compare-notify').fadeIn().append('<p class="compare-note">Add product in <a href="compare.html"> <i class="bi bi-arrow-repeat"></i>Compare list</a> Successfully!</p>'); setTimeout(function () { $('.compare-note').fadeOut() }, 2000); }); // Add to cart button notify $('.add-to-cart').on("click", function () { $('.cart-notify').fadeIn(); setTimeout(function () { $('.cart-notify').fadeOut() }, 2000); }); // product slider $(document).ready(function () { $('.slider-for').slick({ slidesToShow: 1, slidesToScroll: 1, arrows: false, fade: true, asNavFor: '.slider-nav', }); $('.slider-nav').slick({ slidesToShow: 3, slidesToScroll: 1, asNavFor: '.slider-for', dots: false, arrows: false, centerMode: true, focusOnSelect: true, }); }); // product slider - Vertical Left Thumbnail $(document).ready(function () { $('.slider-for-left').slick({ slidesToShow: 1, slidesToScroll: 1, arrows: true, fade: true, asNavFor: '.slider-nav-left', }); $('.slider-nav-left').slick({ slidesToShow: 3, slidesToScroll: 1, asNavFor: '.slider-for-left', dots: false, arrows: false, centerMode: true, focusOnSelect: true, vertical: true, responsive: [ { breakpoint: 1024, settings: { slidesToShow: 2, slidesToScroll: 1, centerMode: true, vertical: false, } } ] }); }); // modal open show product gallery $('.modal').on('shown.bs.modal', function (e) { $('.slider-for').slick('setPosition'); $('.slider-nav').slick('setPosition'); }); // zoom product gallery function zoom(e) { var zoomer = e.currentTarget; e.offsetX ? offsetX = e.offsetX : offsetX = e.touches[0].pageX e.offsetY ? offsetY = e.offsetY : offsetX = e.touches[0].pageX x = offsetX / zoomer.offsetWidth * 100 y = offsetY / zoomer.offsetHeight * 100 zoomer.style.backgroundPosition = x + '% ' + y + '%'; } // Login Reg Tab $('.reg-btn').click(function () { $("#international-tab").click(); }); $('.log-btn').click(function () { $("#domestic-tab").click(); }); // wishlist box $('.item-wrap .notify-btn').on('click', function () { $('.notify-box').toggleClass('active'); $('.user-content').removeClass('active'); }); // Background Set $('.set-bg').each(function () { var bg = $(this).data('setbg'); $(this).css('background-image', 'url(' + bg + ')'); }); //Related Post Slider $(document).ready(function () { $('.carouselRelatedPost').slick({ dots: false, arrows: true, infinite: true, speed: 500, slidesToShow: 2, slidesToScroll: 1, responsive: [ { breakpoint: 1024, settings: { slidesToShow: 2, slidesToScroll: 1, } }, { breakpoint: 767, settings: { slidesToShow: 1, slidesToScroll: 1 } }, ] }); }); //gallery - blog Post Slider $(document).ready(function () { $('.carouselGalleryPost').slick({ dots: false, arrows: true, infinite: true, speed: 500, slidesToShow: 1, slidesToScroll: 1, }); }); //gallery - slider $(document).ready(function () { $('.carouselGallerySlider').slick({ dots: false, arrows: true, infinite: true, speed: 500, slidesToShow: 5, slidesToScroll: 1, }); }); // Shop Categories slider $(document).ready(function () { $('.carouselShopCate').slick({ autoplay: false, dots: false, arrows: true, infinite: true, speed: 500, slidesToShow: 6, slidesToScroll: 1, responsive: [ { breakpoint: 1024, settings: { slidesToShow: 3, slidesToScroll: 3, } }, { breakpoint: 767, settings: { slidesToShow: 2, slidesToScroll: 2 } }, { breakpoint: 540, settings: { slidesToShow: 1, slidesToScroll: 1 } } ] }); });