HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //proc/self/root/usr/local/CyberCP/public/static/baseTemplate/assets/widgets/animation/animation.js
$(document).ready(function(){

  /* jQuery Animation */

  $(function(){

    $('.animation-toggle').click(function(){

      var animationEFFECT = $(this).attr('data-animation');
      var animationTARGET = $(this).attr('data-animation-target');

      $(animationTARGET).addClass('animated');
      $(animationTARGET).addClass(animationEFFECT);
      $(animationTARGET).removeClass('hide');
      

      var wait = window.setTimeout( function(){
        $(animationTARGET).removeClass('animated');
        $(animationTARGET).removeClass(animationEFFECT);
        $(animationTARGET).addClass('hide')},

        1300
      );

    });

  });

/* Photo Gallery hover */

  $('.thumbnail-box').hover(function(){

      $('.thumbnail-overlay', this).fadeIn('fast');
      $('.thumbnail-content', this).slideDown('fast');

  },
  function(){

      $('.thumbnail-overlay', this).fadeOut('fast');
      $('.thumbnail-content', this).slideUp('fast');

  });

});