码迷,mamicode.com
首页 > Web开发 > 详细

JS实现感应鼠标滑动提示层效果

时间:2015-04-08 12:53:49      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:



<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>JS实现感应鼠标滑动提示层效果丨kiddy官网轻质隔墙板</title> 

</head> <script type="text/javascript"> function shouhui() { document.getElementById(div1).style.display=block; } function fangzou() { document.getElementById(div1).style.display=none; } </script> <style type="text/css"> #div1{ background:#CCC; width:500px; height:400px; display:none; } </style> <body> <label><input type="checkbox" onmouseover="shouhui()" onmouseout="fangzou()"/>鼠标靠近方框查看预览效果</label> <div id="div1"> 鼠标靠近后查看 </div> </body> </html> <br><br><hr>

 

JS实现感应鼠标滑动提示层效果

标签:

原文地址:http://www.cnblogs.com/youtianxia/p/4401709.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!