Update semag/star/index.html

This commit is contained in:
LEGALISE_PIRACY 2024-04-27 16:21:41 +00:00
parent f34144a5b7
commit 72b433956c

View File

@ -180,6 +180,14 @@ font-family: 'Press Start 2P', sans-serif;
}, false);
})();
</script>
$(document).ready(function(){
$(".star").click(function(){
$(this).css("transform", "scale(1.2)");
setTimeout(() => {
$(this).css("transform", "scale(1)");
}, 100);
});
});
</head>
<body>