⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 27满天星背景.htm

📁 介绍了javascript的常用的函数
💻 HTM
字号:
<html>
<head>
<title>满天星背景</title>
<script language="javascript">
<!--
	n = 0;
	function start(){
		width = Math.random() * document.body.clientWidth-10;
		height = Math.random() * document.body.clientHeight-10;
		document.all["s" + n].style.top = height;
		document.all["s" + n].style.left = width;
		n++;
		if (n>=100) n = 0;
		setTimeout("start()",30);
	}
//-->
</script>
</head>
<body bgcolor="#000000">
<script language="javascript">
<!--
	for (i=0;i<100;i++){
		str = "<div id='s"+i;
		str += "' style='position:absolute;";
		str += "left:51px;top:38px;";
		str += "width:2;height:2;";
		str += "background-color: #FFFFFF;";
		str += "font-size:0;'></div>"
		document.write(str);
	}
	start();
//-->
</script>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -