From 72b433956ce3cb12146308d62a1d8a0db086049a Mon Sep 17 00:00:00 2001 From: LEGALISE_PIRACY Date: Sat, 27 Apr 2024 16:21:41 +0000 Subject: [PATCH] Update semag/star/index.html --- semag/star/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/semag/star/index.html b/semag/star/index.html index 2c176291..dd174bba 100644 --- a/semag/star/index.html +++ b/semag/star/index.html @@ -180,6 +180,14 @@ font-family: 'Press Start 2P', sans-serif; }, false); })(); +$(document).ready(function(){ + $(".star").click(function(){ + $(this).css("transform", "scale(1.2)"); + setTimeout(() => { + $(this).css("transform", "scale(1)"); + }, 100); + }); +});