jQuery的Highlight方法将以黄色背景突出显示所有div。
如何指定要使用的颜色而不是黄色以突出显示?
Answers:
根据文档:
$(this).effect("highlight", {color: 'blue'}, 3000);
$("div").click(function () {
$(this).effect("highlight", { color: "#ff0000" }, 3000);
});
将以红色突出显示。全部在文档中。
$('.divID').live('mouseover mouseout', function (event) {
if (event.type == 'mouseover') {
// do something on mouseover
$(this).css({ "background-color": YOURCOLOR, "opacity": ".50" });
}
else {
// do something on mouseout
$(this).css("opacity", "100");
}
});
这将为您带来不透明外观的漂亮悬停效果。