提示:您可以先修改部分代码再运行
<!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=gb2312" />
<title>js 停几秒自动隐藏顶部全屏广告代码</title>
<style>
.showads_top{
border:1px solid #666;
height:450px;
width:950px;
margin:0 auto;
}
</style>
</head>
<body>
<div id="showads_top" style="border:1px solid #666;height:450px;width:950px;margin:0 auto;">this 这里可以放图片<img src=bannerbanner.gif /></div>
<script language="javascript">
function hidetopbg()
{
document.getElementById('showads_top').style.display='none';
}
setTimeout("hidetopbg()",10000);
</script>
</body>
</html>
提示:您可以先修改部分代码再运行
时间: 2024-09-30 00:21:56