码迷,mamicode.com
首页 > 其他好文 > 详细

用setTimeout模拟QQ延时提示框

时间:2015-12-22 06:28:56      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

 

很简单的代码,不多解释,一看就懂。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
    #div1{width:50px; height:50px; background:red;}
    #div2{width:200px; height:150px; background:grey; display:none;}
</style>
</head>

<body>
    <div id="div1"></div>
    <div id="div2"></div>
    
    <script>
        window.onload = function(){
            var div1 = document.getElementById("div1");
            var div2 = document.getElementById("div2");
            var timer = null;
            
            div1.onmouseover = function(){
                clearTimeout(timer);
                timer = setTimeout(function(){
                    div2.style.display = "block";
                },500);
            };
            
            div1.onmouseout = function(){
                timer = setTimeout(function(){
                    div2.style.display = "none";
                },500);
            };
            
            div2.onmouseover = function(){
                clearTimeout(timer);
                timer = setTimeout(function(){
                    div2.style.display = "block";
                },500);
            };
            
            div2.onmouseout = function(){
                timer = setTimeout(function(){
                    div2.style.display = "none";
                },500);
            };
        };
    </script>
</body>
</html>

 

用setTimeout模拟QQ延时提示框

标签:

原文地址:http://www.cnblogs.com/zcynine/p/5065459.html

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