initial commit

This commit is contained in:
FarseaSH 2021-08-05 13:38:08 +08:00
commit d4097e8b0e
46 changed files with 525 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<!-- Like button -->
<script>
$("i").click(function(){
if ($(this).attr("red") == 'true'){
$(this).animate({color:"#808080"});
$(this).attr("red", false);
} else {
$(this).animate({color:"#ff0000"});
$(this).attr("red", true);
}
});
</script>