右下角弹出小窗口 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);
op=false;
}else{
runtimer(2);
op=true;
}
}
</script>
</head>
<body >
<div style="position:absolute;right:0;bottom:0;height:0px;width:200px;border:1px solid red;" id="popDiv">
<a href="javascript:opz();">×</a>
</div>
</body>
</html>