1、添加透明flash
<embed src="flash地址"; width="1024" height="600" quality="high" wmode="transparent" align="right" style="position: absolute; left:0; top:0">
2、换背景
BODY {BACKGROUND:#999999 url(背景地址) repeat-1 left top}
3、背景音乐(非播放器)
<BGSOUND balance=0 src="歌曲下载地址" volume=0 loop=infinite>
4、随即播放背景音乐(这个效果可以让每次进主页所播放的音乐会不同)
<SCRIPT language="javascript">
<!--
var sound1="音乐的地址1"
var sound2="音乐的地址2"
var sound3="音乐的地址3"
var sound4="音乐的地址4"
var sound5="音乐的地址5"
var sound6="音乐的地址6"
var sound7="音乐的地址7"
var sound8="音乐的地址8"
var sound9="音乐的地址9"
var sound10="音乐的地址10"
var x=Math.round(Math.random()*9)
if (x==0) x=sound1
else if (x==1) x=sound2
else if (x==2) x=sound3
else if (x==3) x=sound4
else if (x==4) x=sound5
else if (x==5) x=sound6
else if (x==6) x=sound7
else if (x==7) x=sound8
else if (x==8) x=sound9
else x=sound10
if (navigator.appName=="Microsoft Internet Explorer")
document.write('<bgsound src="/+'"'+x+'"'+' loop="infinite">')
else
document.write('<embed src="/+'"'+x+'"'+'hidden="true" border="0" width="20" height="20" autostart="true" loop="true">')
//-->
5、添加鼠标
<STYLE type=text/css>body{cursor:url(鼠标地址)}</STYLE>
6、有标题的表格
<fieldset style="width:220" align="left"><legend>标题</legend>这里是表格中的内容(文字或图片)</fieldset>
7、禁止左右键
<!-- Mirrored from sucai.heima.com/sucai/js/shu3.htm by HTTrack Website Copier/3.x [XR&CO'2002], Tue, 02 Nov 2004 10:20:00 GMT -->
<head>区域中
<script language="javascript">
function click() {
if (event.button==1) { //改成button==2为禁止右键
alert('对不起,禁止使用此功能.')
}
}
document.onmousedown=click
</script>
后面再不断增加乐~