mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00
10 lines
494 B
JavaScript
10 lines
494 B
JavaScript
window.fun = function fun(e){ setTimeout(() => {
|
|
e = e || {}; var $img = $('<div class="joy"></div>')
|
|
.css({position: 'fixed', width: 100,
|
|
top: (e.y || e.clientY || (Math.random() * $(window).height()))-50,
|
|
left: (e.x || e.clientX || e.pageX || (Math.random() * $(window).width()))-50,
|
|
transform: 'rotate('+(Math.random() * 360)+'deg)'
|
|
}).appendTo('body');
|
|
setTimeout(() => { $img.remove() },800);
|
|
},10)};
|
|
$(document).on('keyup', fun).on('touchstart', fun).on('mousedown', fun); |