血浆成分来源:banner随机现在广告滚动代码谁知道?

来源:百度文库 编辑:神马品牌网 时间:2024/05/10 12:47:23
banner随机现在广告滚动代码谁知道?

//JavaScript广告代码
//具体的时候可以使位置随机.
<html>
<head>
<script language="javascript">
var xx;
function pop()
{xx=window.open("广告.htm","subwin","width=400,height=200");

//移动到屏幕中央。
xx.moveTo((screen.width-400)/2,(screen.height-200)/2);

//广告窗口放在最前面
xx.focus();

// 5秒后关闭
setTimeout("closepop()",5000);
}
function closepop()
{xx.close();
}
</script>
</head>
<body onload="javascript:pop();">
</body>
</html>