初探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.οnlοad=function(){
  var oDiv1=document.getElementById("d1");
  var oDiv2=document.getElementById("d2");
  var timer;
  oDiv2.οnmοuseοver=oDiv1.οnmοuseοver=function(){
   clearInterval(timer);
   oDiv2.style.display='block'; 
  }
  oDiv2.οnmοuseοut=oDiv1.οnmοuseοut=function(){
   timer=setTimeout(function(){
    oDiv2.style.display='none';     
   },500); 
  }

 }
</script>

</head>

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


未完待續,請繼續收看定時器two

 

發佈了63 篇原創文章 · 獲贊 28 · 訪問量 18萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章