入黎睇下!! [語法]
語法;;
[★]板面糢糊
此語法可令整個板所有東西
也變成糢糊、包括圖片
注意:此語法會令你的QZ變慢
<style>
body{filter:Blur(Direction=45,Strength=5)}
</style>
[★]歡迎方塊
入板彈出對話方塊
對話方塊之數量、可以加或減
想增加、可加多一個相同的語法
中文字的地方、改寫你喜歡的字句
彈出的次序、是放在版面語法內
由上而下排列
同一方塊想隔行、可用 \n\n
<SCRIPT>
window.alert("改寫你喜歡的字句")
</SCRIPT>
[★]告別視窗
離開時才看到效果 語法中:想隔行可用 \n\n
<script language="JavaScript">
function UserExit(){
alert("改寫你喜歡的字句");
}</script>
<body >
[★]隨機背景圖 ( 固定背景 )
pic[5]="圖片網址" 想加圖要順序增加多一行 pic[0] ..... pic[1] ..... pic[5] ..... pic[6] ..... Array(6) 6是總數有多少幅圖 ( 不可有錯 )
<script language=javascript>
var pic=new Array(6)
pic[0]="圖片網址"
pic[1]="圖片網址"
pic[2]="圖片網址"
pic[3]="圖片網址"
pic[4]="圖片網址"
pic[5]="圖片網址"
var newdate=new Date()
var getpic=newdate.getSeconds()%pic.length
document.write('<body background='+pic[getpic]+' bgproperties=fixed>')
</script>
[★]定時轉換背景圖
最頂數落第六行 swapspeed=10
是定時轉換之速度 =10 是十秒
語法中可改速度及自行加多些圖片
只需加 ","圖片網址"," 分隔開
但用了此語法
可能會令某些語法用不到,請留意
<SCRIPT Language="JavaScript">
var backgroundimage=new Array("圖片網址","圖片網址","圖片網址","圖片網址");
var swapspeed=10
var timer
var imgpreload=new Array()
if (document.all) {
for (i=0;i<=backgroundimage.length-1;i++) {
imgpreload=new Image()
imgpreload.src=backgroundimage
}}var i_backgroundimage=0
swapspeed=swapspeed*1000
function swapimages() {if (document.all) {
window.status=i_backgroundimage
document.body.background=backgroundimage[i_backgroundimage]
i_backgroundimage++
if (i_backgroundimage>=backgroundimage.length) {i_backgroundimage=0}timer=setTimeout("swapimages()",swapspeed)
}}window.onload=swapimages
</SCRIPT>
[★]小型地震
一進入,可感覺之地震
但這語法、可能會令人討厭
願各位使用時、請三思
<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>
-------------------------------------------------
鼠標
哈哈笑:
<style type="text/css">
<!--
body{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
a{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
-->
</style>
哈哈笑:
<style type="text/css">
<!--
body{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
a{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
-->
</style>
哈哈笑:
<style type="text/css">
<!--
body{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
a{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
-->
</style>
星星:
<style type="text/css">
<!--
body{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
a{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
-->
</style>
村上隆花花:
<style type="text/css">
<!--
body{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
a{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
-->
</style>
KISS(紅):
<style type="text/css">
<!--
body{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
a{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
-->
</style>
KISS(粉):
<style type="text/css">
<!--
body{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
a{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
-->
</style>
KISS(黑):
<style type="text/css">
<!--
body{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
a{cursor:url(遊客無法瀏覽此圖片或下載點,請先註冊或登入會員。);}
-->
</style>
-------------------------------------------------------
個人資料半透明,滑鼠指變清
opcty 是 未指住個人資料時 的不透明度
msvropcty 是 指住個人資料時 的不透明度
放Website Stats
<script language="javascript">
opcty = 15;
msvropcty = 100;
mozopcty = opcty/100;
mozmsvropcty = msvropcty/100;
if (document.all){
tables = document.getElementsByTagName('table');
for(var j=0;j<tables.length;j++){
if(tables[j].className.match(/\left\b/)){
tables[j].style.filter = "alpha(opacity=" + opcty + ")";
if(msvropcty > 99){
tables[j].onmouseover = function(){this.style.filter = "none";}}
else{
tables[j].onmouseover = function(){this.style.filter = "alpha(opacity=" + msvropcty + ")";}}
tables[j].onmouseout = function(){this.style.filter = "alpha(opacity=" + opcty + ")";}
}}}else{
document.write('<style>table.left{opacity: ');
document.write(mozopcty)
document.write(';}</style>');
tables = document.getElementsByTagName('table');
for(var j=0;j<tables.length;j++){
if(tables[j].className.match(/\left\b/)){
tables[j].onmouseover = function(){this.style.opacity = mozmsvropcty;}
tables[j].onmouseout = function(){this.style.opacity = mozopcty;}
}}}
//--></script>
|