init commit

This commit is contained in:
2026-03-17 09:56:00 +08:00
commit e2c8ae752d
6827 changed files with 1211784 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
$(function () {
$(".about-container .main-screen .screen-item").click(function () {
let id = $(this).attr("data-id")
$(".about-container .main-screen .screen-item").removeClass("active")
$(this).addClass("active")
if (id == 1) {
$(".about-container .main-content .content").hide()
$(".about-container .main-content .course").show()
} else if (id == 2) {
$(".about-container .main-content .content").hide()
$(".about-container .main-content .honor").show()
} else if (id == 3) {
$(".about-container .main-content .content").hide()
$(".about-container .main-content .rules").show()
}
})
});