hugo-theme-moments/layouts/partials/after-content-js.html
2021-08-05 13:38:08 +08:00

12 lines
No EOL
322 B
HTML

<!-- 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>