Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/tomas/public_html/wp-content/themes/arilewp/assets/js/ |
Upload File : |
// OWL SLIDER CUSTOM JS jQuery(document).ready(function() { /* ---------------------------------------------- /* * Header Sticky /* ---------------------------------------------- */ jQuery(window).scroll(function(){ if (jQuery(window).scrollTop() >= 100) { jQuery('.header-sticky').addClass('header-fixed-top'); jQuery('.header-sticky').removeClass('not-sticky'); } else { jQuery('.header-sticky').removeClass('header-fixed-top'); jQuery('.header-sticky').addClass('not-sticky'); } }); /* ---------------------------------------------- /* * Scroll top /* ---------------------------------------------- */ jQuery(window).scroll(function() { if (jQuery(this).scrollTop() > 100) { jQuery('.page-scroll-up').fadeIn(); } else { jQuery('.page-scroll-up').fadeOut(); } }); jQuery('a[href="#totop"]').click(function() { jQuery('html, body').animate({ scrollTop: 0 }, 'slow'); return false; }); // Accodian Js function toggleIcon(e) { jQuery(e.target) .prev('.panel-heading') .find(".more-less") .toggleClass('fa-plus-square-o fa-minus-square-o'); } jQuery('.panel-group').on('hidden.bs.collapse', toggleIcon); jQuery('.panel-group').on('shown.bs.collapse', toggleIcon); jQuery("#theme-main-slider").owlCarousel({ navigation : true, // Show next and prev buttons slideSpeed : 300, autoplay : 7000, autoplayTimeout: 2500, smartSpeed: 1000, autoplayHoverPause:true, singleItem:true, mouseDrag: true, loop:true, // loop is true up to 1199px screen. nav:true, // is true across all sizes margin:0, // margin 10px till 960 breakpoint autoHeight: true, responsiveClass:true, // Optional helper class. Add 'owl-reponsive-' + 'breakpoint' class to main element. items: 1, dots: false, navText: ["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"] }); });