/
/
home
/
u523034047
/
domains
/
amanelectronic.com
/
public_html
/
js
Server: in-mum-web1112.main-hosting.eu (62.72.28.111)
You: 216.73.216.60
PHP 8.3.16
Dir:
/home/u523034047/domains/amanelectronic.com/public_html/js
Edit:
/home/u523034047/domains/amanelectronic.com/public_html/js/script.js
(function($) { "use strict"; //Hide Loading Box (Preloader) function handlePreloader() { if($('.preloader').length){ $('.preloader').delay(200).fadeOut(500); } } //Update header style + Scroll to Top function headerStyle() { if($('.main-header').length){ var windowpos = $(window).scrollTop(); if (windowpos >= 250) { $('.main-header').addClass('fixed-header'); $('.scroll-to-top').fadeIn(300); } else { $('.main-header').removeClass('fixed-header'); $('.scroll-to-top').fadeOut(300); } } } headerStyle(); //Submenu Dropdown Toggle if($('.main-header li.dropdown ul').length){ $('.main-header li.dropdown').append('<div class="dropdown-btn"><span class="fa fa-angle-down"></span></div>'); //Dropdown Button $('.main-header li.dropdown .dropdown-btn').on('click', function() { $(this).prev('ul').slideToggle(500); }); //Disable dropdown parent link $('.navigation li.dropdown > a').on('click', function(e) { e.preventDefault(); }); } //Revolution Slider Style One if($('.main-slider.style-one .tp-banner').length){ $('.main-slider.style-one .tp-banner').show().revolution({ dottedOverlay:'yes', delay:10000, startwidth:1200, startheight:770, hideThumbs:600, thumbWidth:80, thumbHeight:50, thumbAmount:5, navigationType:"bullet", navigationArrows:"0", navigationStyle:"preview3", touchenabled:"on", onHoverStop:"off", swipe_velocity: 0.7, swipe_min_touches: 1, swipe_max_touches: 1, drag_block_vertical: false, parallax:"mouse", parallaxBgFreeze:"on", parallaxLevels:[7,4,3,2,5,4,3,2,1,0], keyboardNavigation:"off", navigationHAlign:"center", navigationVAlign:"bottom", navigationHOffset:0, navigationVOffset:40, soloArrowLeftHalign:"left", soloArrowLeftValign:"center", soloArrowLeftHOffset:20, soloArrowLeftVOffset:20, soloArrowRightHalign:"right", soloArrowRightValign:"center", soloArrowRightHOffset:20, soloArrowRightVOffset:20, shadow:0, fullWidth:"on", fullScreen:"off", spinner:"spinner4", stopLoop:"off", stopAfterLoops:-1, stopAtSlide:-1, shuffle:"off", autoHeight:"off", forceFullWidth:"on", hideThumbsOnMobile:"on", hideNavDelayOnMobile:1500, hideBulletsOnMobile:"on", hideArrowsOnMobile:"on", hideThumbsUnderResolution:0, hideSliderAtLimit:0, hideCaptionAtLimit:0, hideAllCaptionAtLilmit:0, startWithSlide:0, videoJsPath:"", fullScreenOffsetContainer: "" }); } //Revolution Slider Style Two if($('.main-slider.style-two .tp-banner').length){ $('.main-slider.style-two .tp-banner').show().revolution({ dottedOverlay:'yes', delay:10000, startwidth:1200, startheight:950, hideThumbs:600, thumbWidth:80, thumbHeight:50, thumbAmount:5, navigationType:"bullet", navigationArrows:"0", navigationStyle:"preview3", touchenabled:"on", onHoverStop:"off", swipe_velocity: 0.7, swipe_min_touches: 1, swipe_max_touches: 1, drag_block_vertical: false, parallax:"mouse", parallaxBgFreeze:"on", parallaxLevels:[7,4,3,2,5,4,3,2,1,0], keyboardNavigation:"off", navigationHAlign:"center", navigationVAlign:"bottom", navigationHOffset:0, navigationVOffset:40, soloArrowLeftHalign:"left", soloArrowLeftValign:"center", soloArrowLeftHOffset:20, soloArrowLeftVOffset:20, soloArrowRightHalign:"right", soloArrowRightValign:"center", soloArrowRightHOffset:20, soloArrowRightVOffset:20, shadow:0, fullWidth:"on", fullScreen:"off", spinner:"spinner4", stopLoop:"off", stopAfterLoops:-1, stopAtSlide:-1, shuffle:"off", autoHeight:"off", forceFullWidth:"on", hideThumbsOnMobile:"on", hideNavDelayOnMobile:1500, hideBulletsOnMobile:"on", hideArrowsOnMobile:"on", hideThumbsUnderResolution:0, hideSliderAtLimit:0, hideCaptionAtLimit:0, hideAllCaptionAtLilmit:0, startWithSlide:0, videoJsPath:"", fullScreenOffsetContainer: "" }); } //Masonary Layout function enableMasonry() { if($('.masonry-container').length) { $('.masonry-container').isotope({ itemSelector: '.masonry-item', // layout mode options masonry: { columnWidth: 0 } }); } } enableMasonry(); // Fact Counter function factCounter() { if($('.fact-counter').length){ $('.fact-counter .counter-column.animated').each(function() { var $t = $(this), n = $t.find(".count-text").attr("data-stop"), r = parseInt($t.find(".count-text").attr("data-speed"), 10); if (!$t.hasClass("counted")) { $t.addClass("counted"); $({ countNum: $t.find(".count-text").text() }).animate({ countNum: n }, { duration: r, easing: "linear", step: function() { $t.find(".count-text").text(Math.floor(this.countNum)); }, complete: function() { $t.find(".count-text").text(this.countNum); } }); } }); } } //Tabs Box if($('.tabs-box').length){ //Tabs $('.tabs-box .tab-buttons .tab-btn').on('click', function(e) { e.preventDefault(); var target = $($(this).attr('data-tab')); target.parents('.tabs-box').find('.tab-buttons').children('.tab-btn').removeClass('active-btn'); $(this).addClass('active-btn'); target.parents('.tabs-box').find('.tabs-content').find('.tab').fadeOut(0); target.parents('.tabs-box').find('.tabs-content').find('.tab').removeClass('active-tab'); $(target).fadeIn(300); $(target).addClass('active-tab'); }); } //Product Tabs if($('.prod-tabs .tab-btn').length){ $('.prod-tabs .tab-btn').on('click', function(e) { e.preventDefault(); var target = $($(this).attr('href')); $('.prod-tabs .tab-btn').removeClass('active-btn'); $(this).addClass('active-btn'); $('.prod-tabs .tab').fadeOut(0); $('.prod-tabs .tab').removeClass('active-tab'); $(target).fadeIn(500); $(target).addClass('active-tab'); }); } //Jquery Spinner / Quantity Spinner if($('.quantity-spinner').length){ $('.quantity-spinner .plus').on('click', function() { var val = $(this).prev('.prod_qty').val(); $(this).prev('.prod_qty').val((val*1)+1); }); $('.quantity-spinner .minus').on('click', function(){ var val = $(this).next('.prod_qty').val(); if (val != 1 ){ $(this).next('.prod_qty').val((val*1)-1); } }); } //Mixitup Gallery if($('.filter-list').length){ $('.filter-list').mixItUp({}); } //Accordion Box if($('.accordion-box').length){ $(".accordion-box").on('click', '.acc-btn', function() { var outerBox = $(this).parents('.accordion-box'); var target = $(this).parents('.accordion'); if($(this).hasClass('active')!==true){ $('.accordion .acc-btn').removeClass('active'); } if ($(this).next('.acc-content').is(':visible')){ return false; }else{ $(this).addClass('active'); $(outerBox).children('.accordion').removeClass('active-block'); $(outerBox).children('.accordion').children('.acc-content').slideUp(300); target.addClass('active-block'); $(this).next('.acc-content').slideDown(300); } }); } //Sponsors Slider if ($('.sponsors-slider').length) { $('.sponsors-slider').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 500, autoplay: 4000, navText: [ '<span class="fa fa-angle-left"></span>', '<span class="fa fa-angle-right"></span>' ], responsive:{ 0:{ items:2 }, 600:{ items:3 }, 800:{ items:4 }, 1024:{ items:5 }, 1200:{ items:6 } } }); } //Gallery Carousel Slider if ($('.gallery-carousel').length) { $('.gallery-carousel').owlCarousel({ loop:true, margin:5, nav:true, smartSpeed: 500, autoplay: false, navText: [ '<span class="fa fa-angle-left"></span>', '<span class="fa fa-angle-right"></span>' ], responsive:{ 0:{ items:1 }, 600:{ items:2 }, 800:{ items:3 }, 1070:{ items:4 } } }); } //Gallery Carousel Slider if ($('.team-carousel').length) { $('.team-carousel').owlCarousel({ loop:true, margin:20, nav:true, smartSpeed: 500, autoplay: 4000, navText: [ '<span class="fa fa-angle-left"></span>', '<span class="fa fa-angle-right"></span>' ], responsive:{ 0:{ items:1 }, 600:{ items:2 }, 800:{ items:3 }, 1070:{ items:4 } } }); } //Three Column Carousel Slider if ($('.three-column-carousel').length) { $('.three-column-carousel').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 500, autoplay: 4000, navText: [ '<span class="fa fa-angle-left"></span>', '<span class="fa fa-angle-right"></span>' ], responsive:{ 0:{ items:1 }, 480:{ items:1 }, 600:{ items:2 }, 800:{ items:2 }, 1024:{ items:3 } } }); } //Two Column Carousel Slider if ($('.two-column-carousel').length) { $('.two-column-carousel').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 500, autoplay: 4000, navText: [ '<span class="fa fa-angle-left"></span>', '<span class="fa fa-angle-right"></span>' ], responsive:{ 0:{ items:1 }, 480:{ items:1 }, 600:{ items:1 }, 800:{ items:2 }, 1024:{ items:2 } } }); } //Single Item Slider if ($('.single-item-carousel').length) { $('.single-item-carousel').owlCarousel({ loop:true, margin:0, nav:true, smartSpeed: 700, autoplay: 4000, navText: [ '<span class="fa fa-angle-left"></span>', '<span class="fa fa-angle-right"></span>' ], responsive:{ 0:{ items:1 }, 600:{ items:1 }, 1200:{ items:1 } } }); } //Single Item Slider if ($('.brand').length) { $('.brand').owlCarousel({ loop:true, margin:30, nav:true, smartSpeed: 700, autoplay: 4000, navText: [ '<span class="fa fa-angle-left"></span>', '<span class="fa fa-angle-right"></span>' ], responsive:{ 0:{ items:1 }, 600:{ items:2 }, 800:{ items:3 }, 1024:{ items:4 }, 1100:{ items:4 }, 1200:{ items:5 } } }); } // Testimonials Carousel Slider if ($('.testimonial-slider-content').length && $('.testimonial-slider-pager').length) { var $sync1 = $(".testimonial-slider-content"), $sync2 = $(".testimonial-slider-pager"), flag = false, duration = 500; $sync1 .owlCarousel({ loop:false, items: 1, margin: 0, nav: true, navText: [ '<span class="fa fa-angle-left"></span>', '<span class="fa fa-angle-right"></span>' ], dots: true, autoplay: true, autoplayTimeout: 5000 }) .on('changed.owl.carousel', function (e) { if (!flag) { flag = false; $sync2.trigger('to.owl.carousel', [e.item.index, duration, true]); flag = false; } }); $sync2 .owlCarousel({ loop:false, margin: 25, items: 1, nav: true, dots: true, navText:false, center: false, autoplay: true, autoplayTimeout: 5000, responsive: { 0:{ items:1, autoWidth: false }, 400:{ items:1, autoWidth: false }, 500:{ items:1, center: false, autoWidth: false }, 600:{ items:1, autoWidth: false }, 1200:{ items:1, autoWidth: false } }, }) .on('click', '.owl-item', function () { $sync1.trigger('to.owl.carousel', [$(this).index(), duration, true]); }) .on('changed.owl.carousel', function (e) { if (!flag) { flag = true; $sync1.trigger('to.owl.carousel', [e.item.index, duration, true]); flag = false; } }); } //LightBox / Fancybox if($('.lightbox-image').length) { $('.lightbox-image').fancybox({ openEffect : 'fade', closeEffect : 'fade', helpers : { media : {} } }); } //Contact Form Validation if($('#contact-form').length){ $('#contact-form').validate({ rules: { username: { required: true }, email: { required: true, email: true }, phone: { required: true }, subject: { required: true }, message: { required: true } } }); } // Scroll to a Specific Div if($('.scroll-to-target').length){ $(".scroll-to-target").on('click', function() { var target = $(this).attr('data-target'); // animate $('html, body').animate({ scrollTop: $(target).offset().top }, 1000); }); } // Elements Animation if($('.wow').length){ var wow = new WOW( { boxClass: 'wow', // animated element css class (default is wow) animateClass: 'animated', // animation css class (default is animated) offset: 0, // distance to the element when triggering the animation (default is 0) mobile: false, // trigger animations on mobile devices (default is true) live: true // act on asynchronously loaded content (default is true) } ); wow.init(); } /* ========================================================================== When document is Scrollig, do ========================================================================== */ $(window).on('scroll', function() { headerStyle(); factCounter(); }); /* ========================================================================== When Window is resized ========================================================================== */ $(window).on('resize', function() { enableMasonry(); }); /* ========================================================================== When document is loaded, do ========================================================================== */ $(window).on('load', function() { handlePreloader(); enableMasonry(); }); })(window.jQuery);
Ukuran: 14.4 KB