返回列表 回復 發帖
最新可爱钟表在线时间免费代码
<iframe scrolling="no" frameborder="0" width="180" height="200" src="http://www.xise.cn/qita/zhong/clock.htm" allowtransparency="true"></iframe>
以下有三款框架分割之語法。可供參考使用
<html>
<head>
<META HTTP-EQUIV="content-type" C>
<title>例如;TVBNOW 論壇</title>
</head>

<FRAMESET COLS="*,130" frameborder="YES" border="0">
<frame name="main2" src="http://os.tvbnow.com/thread-182652-1-1.html"><!--左邊檔名>
<frame name="main1" src="http://os.tvbnow.com"><!--右邊選項檔名>
</frameset>

<script language='javascript'>postamble();</script>
</html>
<html>
<head>
<META HTTP-EQUIV="content-type" C>
<title>例如;TVBNOW 論壇</title>
</head>

<FRAMESET rows="100,*" frameborder="yes" border="0">
<frame name="main1" src="http://os.tvbnow.com"><!--上邊選項檔名>
<frame name="main2" src="http://os.tvbnow.com/thread-182652-1-1.html"><!--下邊檔名>
</frameset>
</html>
<html>
<head>
<META HTTP-EQUIV="content-type" C>
<title>例如;TVBNOW 論壇</title>
</head>

<FRAMESET rows="*,100" frameborder="yes" border="0">
<frame name="main2" src="http://os.tvbnow.com/thread-182652-1-1.html"><!--上邊檔名>
<frame name="main1" src="http://os.tvbnow.com"><!--下邊選項檔名>
</frameset>
</html>
[ 本帖最後由 julianneteng 於 2007-10-27 11:12 PM 編輯 ]
隨機背景置中
pic[5]="圖片網址" 想加圖要順序增加多一行
pic[0] ..... pic[1] ..... pic[5] ..... pic[6] ..... Array(6) 6是總數有多少幅圖 ( 不可有錯 ) 語法中最底部 background-position: 50% 50% 50% 50% 是控制圖片顯示位置、可修改 若設定為 background-position: 0% 0% 則是升到、最高、最左。如此類推
<script language=javascript>
var pic=new Array(6)
pic[0]="http://os.tvbnow.com/images/default/toppp_2007.png"
pic[1]="http://os.tvbnow.com/images/default/toppp_2007.png"
pic[2]="http://os.tvbnow.com/images/default/toppp_2007.png"
pic[3]="http://os.tvbnow.com/images/default/toppp_2007.png"
pic[4]="http://os.tvbnow.com/images/default/toppp_2007.png"
pic[5]="http://os.tvbnow.com/images/default/toppp_2007.png"

var newdate=new Date()
var getpic=newdate.getSeconds()%pic.length
document.write('<STYLE>')
document.write('body{ background-image: url('+pic[getpic]+');')
document.write(' background-repeat: no-repeat; ')
document.write('background-attachment: fixed; ')
document.write('background-position: 50% 50% }')
document.write('</STYLE>')
</script>
每小時問候句
最頂第一行
font size=4 是字型大小
第五行 COLOR:blue 是字顏色
所有中文字句中、可改寫喜歡的字句
<font size=4>
<script language=JavaScript>
var today = new Date ()
var hours = today.getHours();
document.write( "<font color=blue face='新細明體'>");
if (hours <=0) document.write("午夜 12 點多了,晚安");
else if (hours <= 1) document.write("午夜 1 點多了");
else if (hours <= 2) document.write("午夜 2 點丫");
else if (hours <= 3) document.write("已經午夜 3 點多了");
else if (hours <= 4) document.write("已經午夜 4 點多了");
else if (hours <= 5) document.write("早ㄚ! 5 點多了");
else if (hours <= 6) document.write("早ㄚ!6 點多了");
else if (hours <= 7) document.write("早ㄚ!已7 點多了");
else if (hours <= 8) document.write("上午 8 點多了");
else if (hours <= 9) document.write("上午 9 點多了");
else if (hours <= 10) document.write("上午 10 點");
else if (hours <= 11) document.write("上午 11 點多了");
else if (hours <= 12) document.write("中午 12 點");
else if (hours <= 13) document.write("下午 1 點");
else if (hours <= 14) document.write("下午 2 點喇");
else if (hours <= 15) document.write("下午 3 點丫");
else if (hours <= 16) document.write("下午 4 點");
else if (hours <= 17) document.write("下午 5 點");
else if (hours <= 18) document.write("下午 6 點多了");
else if (hours <= 19) document.write("晚上 7 點多了");
else if (hours <= 20) document.write("晚上 8 點了歡迎光臨 ");
else if (hours <= 21) document.write("晚上 9 點了歡迎光臨 ");
else if (hours <= 22) document.write("晚上 10 點了歡迎光臨 ");
else if (hours <= 23) document.write("晚上 11 點了歡迎光臨 ");
</script></font>
可用於留言之用〔大地震〕
但這語法、可能會令人討厭
願各位使用時、請三思
按一按、大地震、可改任何字句
<input type=button value=按一按大地震 onclick=javascript:{for(index=0;index<50;index++){i=Math.random()*50;parent.window.moveTo(i,0);parent.window.moveTo(-i,0);parent.window.moveTo(0,i);parent.window.moveTo(0,-i);parent.window.moveTo(i,i);parent.window.moveTo(i,-i);parent.window.moveTo(-i,i);parent.window.moveTo(-i,-i);parent.window.moveTo(0,0);}}>
小型地震
一進入,可感覺之地震
<script>
function shake(n) {
if (self.moveBy){
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
self.moveBy(0,i);
self.moveBy(i,0);
self.moveBy(0,-i);
self.moveBy(-i,0);
}} } }shake(5);</script>
滑鼠指一指 字會變大
<FONT STYLE="cursor='hand'"onMouseover = "this.size=15"onmouseout = "this.size=3">~滑鼠移過來指指先~
TVBNOW 論壇~</FONT>
偷龍轉鳳
<滑鼠指一指,會變另一句說話
〔TVBNOW 論壇〕改自己想打之說話
<h2><span onmouseover=this.innerText="TVBNOW論壇"><h3>~把滑鼠移過來指指先丫~</h3></span></h2>
[ 本帖最後由 julianneteng 於 2007-10-27 11:44 PM 編輯 ]
波浪飄語法
width=400 height=300 是控制飄的闊及高度
<marquee direction=down behavior=alternate width=400 height=300><marquee direction=right behavior=alternate >TVBNOW論壇</marquee></marquee>
兩邊有字色及底色 向外
width="200" 底色之闊度
bgcolor= 是字之底色
請在各 color= 中之位置改改顏色
<marquee bgcolor="BLACK" direction="left" width="200"><font color="WHITE" size="5">TVBNOW論壇</marquee><marquee bgcolor="WHITE"direction="right" width="200"><font color="BLACK" size="5">TVBNOW論壇</marquee>
[ 本帖最後由 julianneteng 於 2007-10-27 11:50 PM 編輯 ]
滑鼠指變字
font:18pt 是字型大小
color:red 是文字顏色
font-family:標楷體 可自訂字體
TVBNOW論壇~Java分享 改為指向顯示的字句
~把滑鼠移過來指指先丫~ 是開始及滑鼠離開顯示字句
<span style="font:18pt;color:red;font-family:標楷體" onmouseover=this.innerText="TVBNOW論壇~Java分享" onmouseout=this.innerText="~把滑鼠移過來指指先丫~">~把滑鼠移過來指指先丫~</span>
[ 本帖最後由 julianneteng 於 2007-10-27 11:57 PM 編輯 ]
推薦幾款滑鼠特效代碼

<BODY style='cursor:url(http://top88.91.tc/sb/01-3.cur)'>

<BODY style='cursor:url(http://top88.91.tc/sb/01.ani)'>

<BODY style='cursor:url(http://top88.91.tc/sb/02.ani)'>

<BODY style='cursor:url(http://top88.91.tc/sb/01-3.cur)'>

<BODY style='cursor:url(http://top88.91.tc/sb/22.ani)'>

<BODY style='cursor:url(http://top88.91.tc/sb/24.ani)'>

<BODY style='cursor:url(http://top88.91.tc/sb/20.ani)'>

<BODY style='cursor:url(http://top88.91.tc/sb/21.ani)'>

<BODY style='cursor:url(http://top88.91.tc/sb/23.ani)'>

<BODY style='cursor:url(http://top88.91.tc/sb/mmdj.ani)'>

<BODY style='cursor:url(http://top88.91.tc/sb/wsz.ani)'>
附件: 您所在的用戶組無法下載或查看附件
計算標準身材
<td><font color="#FF0000" size="5"><script
language="JAVASCRIPT">
<!-- hide this script tag's contents from old browsers
function ClearForm(form){
form.weight.value = "";
form.height.value = "";
form.bmi.value = "";
form.my_comment.value = "";
}
function bmi(weight, height) {
bmindx=weight/eval(height*height);
return bmindx;
}
function checkform(form) {
if (form.weight.value==null||form.weight.value.length==0 || form.height.value==null||form.height.value.length==0){
alert("\n請輸入你的身高體重好嗎?");
return false;
}
else if (parseFloat(form.height.value) <= 40||
parseFloat(form.height.value) >=300||
parseFloat(form.weight.value) <=10||
parseFloat(form.weight.value) >=250){
alert("\n不要鬧了啦!你是怪物啊! \n再鬧.小心我扁你!");
ClearForm(form);
return false;
}
return true;
}
function computeform(form) {
if (checkform(form)) {
yourbmi=Math.round(bmi(form.weight.value, form.height.value/100));
form.bmi.value=yourbmi;
if (yourbmi >40) {
form.my_comment.value="恐龍?,快去看醫生!";
}
else if (yourbmi >30 && yourbmi <=40) {
form.my_comment.value="嗯...或許日本的相撲適合你,我也不知該說甚麼了?";
}
else if (yourbmi >27 && yourbmi <=30) {
form.my_comment.value="你很重喔,早晨跑2000公尺,睡前做500個伏地挺身!!";
}
else if (yourbmi >22 && yourbmi <=27) {
form.my_comment.value="超出標準了,多運動,控制一下飲食吧.祝福你!";
}
else if (yourbmi >=21 && yourbmi <=22) {
form.my_comment.value="真羨慕你.繼續保持下去!最佳女(男)主角換你做做看!!";
}
else if (yourbmi >=18 && yourbmi <21) {
form.my_comment.value="未達標準體重,多吃點對你才有好處.加油!";
}
else if (yourbmi >=16 && yourbmi <18) {
form.my_comment.value="哇!小心餓死.快去吃些高熱量的食物!";
}
else if (yourbmi <16) {
form.my_comment.value="皮包骨了,建議你去掛急診並長期住院 ";
}
}
return;
}
// -- done hiding from old browsers -->
</script></font></td>
</tr>
</table>
</center></div>

<div align="center"><center>

<table border="0">
<tr>
<td><table border="0" cellspacing="1" width="100%"
bgcolor="#00CCFF">
<tr>
<td valign="top"><form method="POST" name="BMI">
<p>身高(公分)<input type="text" size="5"
name="height"
><br>
體重(公斤)<input type="text" size="5"
name="weight"
><br>
<input type="button" value="開始診斷"
><br>
指數<input type="text" size="5" name="bmi"><br>
診斷結果<input type="text" size="45"
name="my_comment"></p>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</center></div>
特定日期問候語  Test must download txt file

放在你想放的位
此特效會在1月1日、12月25日以及每逢星期日彈出訊息
<script language="JavaScript">
<!--
today=new Date();
function initArray(){
this.length=initArray.arguments.length
for(var i=0;i<this.length;i++)
this[i+1]=initArray.arguments }
var d=new initArray("星期日", "星期一","星期二", "星期三","星期四", "星期五", "星期六");
month=today.getMonth()+1;
date=today.getDate();
day=d[today.getDay()+1];
if (day =="星期日"){
alert("今天是星期日,\n有沒有出去玩ㄚ?");
}
if (month==12 && date==25){
alert("今日是一個重要的日子\n因為...今天是\n聖誕節!");
}
if (month==1 && date==1){
alert("新年快樂!");
}
-->
</script>


[ 本帖最後由 julianneteng 於 2007-10-28 01:17 AM 編輯 ]
附件: 您所在的用戶組無法下載或查看附件
(仿廣告)右上角加圖
<div style="position: absolute; right: 20px; top: 35px"> <img src="http://os.tvbnow.com/images/avatars/09.gif"></div>
返回列表