>  기사  >  웹 프론트엔드  >  Node.js는 마우스 이벤트 이동 및 제거 효과를 제어합니다.

Node.js는 마우스 이벤트 이동 및 제거 효과를 제어합니다.

WBOY
WBOY원래의
2016-05-16 16:33:301654검색

JS를 사용하여 마우스 이벤트의 이동 및 제거 효과를 사용자 정의할 수 있습니다. 이벤트가 변경되면 배경색이 변경되는 효과가 있습니다

<style type="text/css">
.style0{
background-color:#FFFF00;
}
.style1{
background-color:#00FFFF;
}
</style>
</head>


<body>
<table width="576" height="79" border="1">
<tr>
<td id="td1" onmousemove="document.getElementById('td1').className='style0';" onmouseout="document.getElementById('td1').className='style1'"><div align="center" class="STYLE2">主页</div></td>
<td><div align="center" class="STYLE2">男</div></td>
<td><div align="center" class="STYLE2">女</div></td>
</tr>
</table>
</body> 
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.