关于网页代码的问题

来源:百度知道 编辑:UC知道 时间:2024/05/11 03:15:12
我想知道那些网站里的那个"正在加载"的那种东东是怎么弄..还有背景音乐怎么加..嘿嘿..我是新手..大家帮帮哈~~~

去百度搜索 网页特效 就行了
推荐给你个网站
http://www.chinaz.com
http://www.helpor.net
这里面就有很多特效和源码
加背景音乐
在head与head 之间加代码
<bgsound src="music.mid" loop="-1">
其中music.mid为你加的音乐名

我的主页
http://52music.icpcn.com
还不懂的话,联系我,我在教你

第一步:
新建个lodabar.js
内容如下:
function loadBar(fl)
//fl is show/hide flag
{
var x,y;
if (self.innerHeight)
{// all except Explorer
x = self.innerWidth;
y = self.innerHeight;
}
else
if (document.documentElement && document.documentElement.clientHeight)
{// Explorer 6 Strict Mode
x = document.documentElement.clientWidth;
y = document.documentElement.clientHeight;