|
Server : LiteSpeed System : Linux leader.herosite.pro 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : spyluwnk ( 1597) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec Directory : /home/spyluwnk/public_html/ecardsonline.in/public/website/js/ | |
|
Path: /home/spyluwnk/public_html/ecardsonline.in/public/website/js/client.js
Size: 740 B
Permissions: 0644
$(window, document, undefined).ready(function() {
$('input').blur(function() {
var $this = $(this);
if ($this.val())
$this.addClass('used');
else
$this.removeClass('used');
});
var $ripples = $('.ripples');
$ripples.on('click.Ripples', function(e) {
var $this = $(this);
var $offset = $this.parent().offset();
var $circle = $this.find('.ripplesCircle');
var x = e.pageX - $offset.left;
var y = e.pageY - $offset.top;
$circle.css({
top: y + 'px',
left: x + 'px'
});
$this.addClass('is-active');
});
$ripples.on('animationend webkitAnimationEnd mozAnimationEnd oanimationend MSAnimationEnd', function(e) {
$(this).removeClass('is-active');
});
});