本人新来的版主,为和大家共同创建美好家园,本人决定从明天起每天发一个网页特效代码
希望能帮助菜鸟同志们
敬礼
[此贴子已经被作者于2004-11-15 23:09:49编辑过]
本人新来的版主,为和大家共同创建美好家园,本人决定从明天起每天发一个网页特效代码
希望能帮助菜鸟同志们
敬礼
[此贴子已经被作者于2004-11-15 23:09:49编辑过]
先从最基本开始
鼠标后飘动的字符
[此贴子已经被静夜思于2005-1-4 9:15:57编辑过]
去掉链接下划线
<style TYPE="text/css"> <!-- A:link{text-decoration:none} A:visited{text-decoration:none} A:hover {color: #ff00ff;text-decoration:underline} --> </style>
状态栏里的欢迎语
[此贴子已经被静夜思于2005-1-4 9:16:48编辑过]
加入收藏夹
<span style="CURSOR: hand" onClick="window.external.addFavorite('http://www.sina.com','新浪')" title="新浪">收藏本站</span>
设为首页
<span onclick="var strHref=window.location.href;this.style.behavior='url(#default#homepage)';this.setHomePage('你的网址');" style="CURSOR: hand">设为首页</span>
网页背景音乐
<EMBED src=http://www.woduhom.com/wfzy/15.mid width=0 height=0 type=audio/mid loop="true" autostart="true" border="0"></EMBED> </FONT>
把蓝色地方换成背景音乐的地址
禁右键
<script language="javascript"> function click() { if (event.button==2) { alert('小样,偷想看我东西 。') } } document.onmousedown=click </script>
放入<body>区域中
接着昨天
ie按钮总动员 <OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0> </OBJECT> <input onclick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开 name=Button1> <input onclick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为 name=Button2> <input onclick=document.all.WebBrowser.ExecWB(10,1) type=button value=属性 name=Button3> <input onclick=document.all.WebBrowser.ExecWB(6,1) type=button value=打印 name=Button> <input onclick=document.all.WebBrowser.ExecWB(8,1) type=button value=页面设置 name=Button4> <input onclick=window.location.reload() type=button value=刷新 name=refresh> <input onclick="window.external.ImportExportFavorites(true,'');" type=button value=导入收藏夹 name=Button5> <input onclick="window.external.ImportExportFavorites(false,'');" type=button value=导出收藏夹 name=Button32> <input onclick="window.external.AddFavorite(location.href, document.title)" type=button value=加入收藏夹 name=Button22> <input onclick="window.external.ShowBrowserUI('OrganizeFavorites', null)" type=button value=整理收藏夹 name=Submit2> <input onclick='window.location="view-source:" + window.location.href' type=button value=查看源文件 name=Button7> <input onclick="window.external.ShowBrowserUI('LanguageDialog', null)" type=button value=语言设置 name=Button6> <input onclick=history.go(1) type=submit value=前进 name=Submit> <input onclick=history.go(-1) type=submit value=后退 name=Submit2> | |