Uname:
Linux gains.arrowcloudlinux.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
Software:
Apache
PHP version:
7.4.33 [ PHP INFO ] PHP os:
Linux
Server Ip:
131.153.51.35
Your Ip:
3.17.175.191
User:
az2015 (2658) | Group:
az2015 (2661)
Safe Mode:
OFF
Disable Function:
allow_url_include,show_source,symlink,system, passthru, exec, popen, pclose, proc_open, proc_terminate, proc_get_status, proc_close, proc_nice, allow_url_fopen, shell-exec, shell_exec, fpassthru, base64_encodem, escapeshellcmd, escapeshellarg, crack_check, crack_closedict, crack_getlastmessage, crack_opendict, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, dl, escap,phpinfo
// Animations v1.4, Copyright 2014, Joe Mottershaw, https://github.com/joemottershaw/
// ==================================================================================
// Animate
function animateElement() {
if (jQuery(window).width() >= 960) {
jQuery('.animate').each(function(i, elem) {
var elem = jQuery(elem),
type = jQuery(this).attr('data-anim-type'),
delay = jQuery(this).attr('data-anim-delay');
if (elem.visible(true)) {
setTimeout(function() {
elem.addClass(type);
}, delay);
}
});
} else {
jQuery('.animate').each(function(i, elem) {
var elem = jQuery(elem),
type = jQuery(this).attr('data-anim-type'),
delay = jQuery(this).attr('data-anim-delay');
setTimeout(function() {
elem.addClass(type);
}, delay);
});
}
}
jQuery(document).ready(function() {
if (jQuery('html').hasClass('no-js'))
jQuery('html').removeClass('no-js').addClass('js');
animateElement();
});
jQuery(window).resize(function() {
animateElement();
});
jQuery(window).scroll(function() {
animateElement();
if (jQuery(window).scrollTop() + jQuery(window).height() == jQuery(document).height())
animateElement();
});
// Triggers
function randomClass() {
var random = Math.ceil(Math.random() * classAmount)
return classesArray[random];
}
function animateOnce(target, type) {
if (type == 'random')
type = randomClass();
jQuery(target).removeClass('trigger infinite ' + triggerClasses).addClass('trigger').addClass(type).one('webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend', function() {
jQuery(this).removeClass('trigger infinite ' + triggerClasses);
});
}
function animateInfinite(target, type) {
if (type == 'random')
type = randomClass();
jQuery(target).removeClass('trigger infinite ' + triggerClasses).addClass('trigger infinite').addClass(type).one('webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend', function() {
jQuery(this).removeClass('trigger infinite ' + triggerClasses);
});
}
function animateEnd(target) {
jQuery(target).removeClass('trigger infinite ' + triggerClasses);
}
// Variables
var triggerClasses = 'flash strobe shakeH shakeV bounce tada wave spinCW spinCCW slingshotCW slingshotCCW wobble pulse pulsate heartbeat panic',
classesArray = new Array,
classesArray = triggerClasses.split(' '),
classAmount = classesArray.length;