You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhky/web/css/lightBody.htc

25 lines
494 B

<public:component>
<public:attach event="onmouseover" onevent="itemOnMouseOver()" />
<public:attach event="onmouseout" onevent="itemOnMouseOut()" />
<script language="javascript">
function itemOnMouseOver(){
with (element) {
with (style) {
//backgroundColor = "highlight"
backgroundColor = "#E4E8EF"
//color = "highlighttext"
}
}
}
function itemOnMouseOut(){
with (element) {
with (style) {
backgroundColor = ""
color = ""
}
}
}
</script>
</public:component>