首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

初探js奇效魅力之延时提示框07

2013-10-09 
初探js特效魅力之延时提示框07初探js特效魅力之延时提示框07!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.

初探js特效魅力之延时提示框07

初探js特效魅力之延时提示框07

 

 

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
div{
 float:left;
 margin:10px;
}
#d1{
 width:50px;
 height:50px;
 background:red;
}
#d2{
 width:300px;
 height:150px;
 background:#CCC;
 display:none;
}
</style>
<script>
 window.onload=function(){
  var oDiv1=document.getElementById("d1");
  var oDiv2=document.getElementById("d2");
  var timer;
  oDiv2.onmouseover=oDiv1.onmouseover=function(){
   clearInterval(timer);
   oDiv2.style.display='block'; 
  }
  oDiv2.onmouseout=oDiv1.onmouseout=function(){
   timer=setTimeout(function(){
    oDiv2.style.display='none';     
   },500); 
  }

 }
</script>
</head>

<body>
 <div id="d1"></div>
    <div id="d2"></div>
</body>
</html>


未完待续,请继续收看定时器two

 

热点排行