添加标签云、最近的文章、归档、GA统计分析等功能

This commit is contained in:
飞雪无情
2018-07-25 23:00:54 +08:00
parent 1a6d1f0759
commit 62cc8e8817
15 changed files with 666 additions and 135 deletions
+32 -15
View File
File diff suppressed because one or more lines are too long
+12
View File
@@ -0,0 +1,12 @@
$(window).scroll(function() {
$(window).scrollTop() > 500 ? $("#rocket").addClass("show") : $("#rocket").removeClass("show");
});
$("#rocket").click(function() {
$("#rocket").addClass("launch");
$("html, body").animate({
scrollTop: 0
}, 500, function() {
$("#rocket").removeClass("show launch");
});
return false;
});