![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/www/adsSlide/examples/js/ |
$(function() { var currentTheme = ''; $('#change-theme').on('click', 'a', function(e) { e.preventDefault(); var theme = 'skitter-' + $(this).data('theme') $('#change-theme a').removeClass('active'); $(this).addClass('active'); $('.skitter-large').removeClass(currentTheme).addClass(theme); currentTheme = theme; }); $('#change-animation').on('click', 'a', function(e) { e.preventDefault(); var animation = $(this).data('animation'); $('#change-animation a').removeClass('active'); $(this).addClass('active'); $('.skitter-large').skitter('setAnimation', animation); $('.skitter-large').skitter('next'); }); var animations = $('.skitter-large').skitter('getAnimations'); for (var i in animations) { var animation = animations[i]; var item = '<li><a href="#" data-animation="' + animation + '">' + animation + '</a></li>'; $('#change-animation ul').append(item); } });