ZhiYeJianKang_PeiXun/Song.Site/Templates/Web/NetSchool/Student/Scripts/index.js
2025-02-20 15:41:53 +08:00

17 lines
534 B
JavaScript

$(function () {
courseOver(); //课程列表中的事件
});
//当课程信息,鼠标滑过时
function courseOver() {
$(".courseList .item").hover(function () {
$(this).addClass("courseOver");
$(this).find(".itemMark").animate({ top: -142 });
$(this).find(".itemInfo").animate({ top: -135 * 2 });
}, function () {
$(this).removeClass("courseOver");
$(this).find(".itemMark").animate({ top: -45 });
$(this).find(".itemInfo").animate({ top: -135 - 45 });
});
}