New: UAParser @cloud

This commit is contained in:
Faisal Salman
2025-03-20 08:10:12 +07:00
parent eba73ed6bb
commit dcdfb94ae6
25 changed files with 3623 additions and 1726 deletions

View File

@@ -143,6 +143,17 @@ $(document)
hide: 300
}
});
$(window).on('scroll', function () {
if ($('#showcase img').offset().top < $(window).scrollTop() + $(window).height()) {
$('#showcase img')
.transition({
animation : 'jiggle',
duration : 1000,
interval : 500
});
$(window).off('scroll');
}
});
var clipboard = new ClipboardJS('#btn-clipboard');
clipboard.on('success', function(e) {

File diff suppressed because one or more lines are too long