我有以下代码:
$("#rade_img_map_1335199662212").hover(function () {
$("li#rs1").toggleClass("active"); //Toggle the active class to the area is hovered
$("li#rs1").fadeIn("slow");
});
我需要添加活动类然后淡入。我有li'rs1
设置为的css,visibility:hidden
当应用该类时,我只是设置它的样式。
我如何使用淡入淡出?
我也在构造这个吗?- 我有 13 个不同的li#rs1
,li#rs2
......一直到li#rs13
具有不同的图像映射 ID。这就是为什么我认为我需要 13 块代码。
编辑:我有区域 ID,所以需要减少代码:
$(document).ready(function () {
$("map#rade_img_map_1335255669666 area#1").hover(function () {
$("li#rs1").toggleClass("active"); //Toggle the active class to the area is hovered
});
});