⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.138
Server IP:
186.226.58.36
Server:
Linux da02.sh15.net 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Server Software:
Apache/2
PHP Version:
8.1.32
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
redesystem
/
public_html
/
shop
/
js
/
View File Name :
config.js
/* -------------------------------------------------------------------------- * File : config.js * Version : 1.0 * Author : Indonez Team * Author URI : http://indonez.com * * Indonez Copyright 2016 All Rights Reserved. * -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- * javascript handle initialization 1. To top Jquery 2. Testimonial Slider * * -------------------------------------------------------------------------- */ (function($){ "use strict"; var themeApp = { //----------- 1. To top Jquery ----------- theme_scrollUP:function() { $(document).scroll(function () { var toTop = $('.to-top'); if ($(this).scrollTop() > 400) { toTop.fadeIn(); } else { toTop.fadeOut(); } }); }, //----------- 2. Testimonial Slider ----------- theme_testimonial_scroll:function() { UIkit.on('domready.uk.dom', function() { //Change slideshow on focuschange of slider var slideshow = UIkit.slideshow('#idz-slideshow'); $('#idz-slider').on('focusitem.uk.slider', function(event, index, item, slider) { slideshow.show($(item).data('ukSlideshowItem')); }); }); }, theme_init:function(){ themeApp.theme_scrollUP(); themeApp.theme_testimonial_scroll(); } }//end themeApp jQuery(document).ready(function($){ themeApp.theme_init(); }); })(jQuery);