日期:2014-05-16  浏览次数:20428 次

右下角弹出小窗口 javascript 不能完全最小化
本帖最后由 ttigerdna 于 2013-04-22 16:19:43 编辑
代码



<html>
<head>
<script language="JavaScript" type="text/javascript">
            function $(obj){
                return document.getElementById(obj);
            }
            function pop(obj){
                var h = parseInt(currentStyle($("popDiv")).height);
                $("popDiv").style.height = (h + obj) + "px";
                if(parseInt($("popDiv").style.height) < 2){
                    window.clearInterval(timer);
                    //$("popDiv").style.display = "none";
                }
                if(parseInt($("popDiv").style.height) >= 200){
                    window.clearInterval(timer);
                }
        
            }
            function currentStyle(element) {
               return element.currentStyle || document.defaultView.getComputedStyle(element, null);
            }

            
            var timer;
            function runtimer(obj){
                timer = window.setInterval(function(){pop(obj)},10);
            }
            window.onload = function(){
                runtimer(2);
            }

            var op=true;
            
            function opz(){
             if(op==true){
             runtimer(-2);