| 
 外框卷軸,擺ws 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<style> 
body{ 
scrollbar-arrow-color: #顏色; 
scrollbar-3dlight-color: #顏色; 
scrollbar-highlight-color: #顏色;  
scrollbar-face-color: #顏色;  
scrollbar-track-color: #顏色; 
scrollbar-shadow-color: #顏色; 
scrollbar-darkshadow-color: #顏色; 
} 
</style>  
******************************************************* 
 
外框變色卷軸,擺ws 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<script language="JavaScript"> 
<!-- 
colours = new Array('#000000', '#999999', '#6699ff', '#fcc0e5', '#ff409f', '#cc99ff') 
function flash() 
{ 
var clrPos = Math.floor(Math.random() * colours.length) 
with(window.document.body.style) 
{ 
scrollbarFaceColor = document.bgColor; 
scrollbarTrackColor = document.bgColor; 
scrollbarArrowColor = colours[clrPos]; 
scrollbarHighlightColor = document.bgColor; 
scrollbar3dLightColor = colours[clrPos];  
scrollbarShadowColor = document.bgColor; 
scrollbarDarkShadowColor = colours[clrPos]; 
borderWidth = 2; 
borderStyle = 'solid'; 
borderColor = colours[clrPos]; 
} 
} 
if (document.all)window.document.body.onscroll = flash; 
//--> 
</script>  
******************************************************* 
 
卷軸由右邊轉去左邊,擺ws 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<body ONCONTEXTMENU="return false" dir="rtl"><DIV DIR="LTR"> 
**呢個除左令卷軸左右掉轉外,板面亦都會一起掉轉** 
 
******************************************************* 
 
個人資料增添卷軸,擺ws 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<script type="text/javascript"> 
 
 
圖片透明 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<img style="FILTER: alpha(opacity=50)" onmouseout=makevisible(this,1) src="圖片的網址">  
**opacity=透明度由1-100,呢個Code只需要貼係你想透明既地方,如Header,Website Stats或Public Profile 
 
******************************************************* 
 
圖片模糊  
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<img src="圖片網址" style="filter:Alpha(Opacity=80,style=2)"> 
**呢個會令到圖四邊模糊,style可以較1,2,3因為有3個款 
 
Subscriptions增添卷軸,擺ws 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<script type="text/javascript"> 
function adjustSirListHeight() 
{ 
// define the height of your SIR-list in the line below 
var sirListHeight = '90px'; 
var allTables = document.getElementsByTagName('tbody'); 
for (i=0; i < allTables.length; i++) 
{ 
if ((allTables.innerHTML.indexOf('Sites I Read') != -1) && 
(allTables.innerHTML.toUpperCase().indexOf('<TABLE') == -1)) 
{ 
sirlist = allTables.lastChild; 
temp = sirlist.firstChild.innerHTML; 
sirlist.removeChild(sirlist.firstChild); 
td = document.createElement('td'); 
div = document.createElement('div'); 
div.style.width = '165px'; 
div.style.height = sirListHeight; 
div.style.overflow = 'auto'; 
div.innerHTML = temp; 
td.appendChild(div); 
sirlist.appendChild(td); 
break; 
} 
} 
} 
if (navigator.userAgent.indexOf('Mac') == -1) 
if ((document.URL.indexOf('weblogs') == -1) &&  
(document.URL.indexOf('guestbook') == -1) && 
(document.URL.indexOf('events') == -1) && 
(document.URL.indexOf('reviews') == -1)) 
adjustSirListHeight(); 
</script>  
******************************************************* 
 
Blogrings增添卷軸,擺ws 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<!-- begin code provided by Kkx3.com--> 
<script type="text/javascript"> 
function adjustSirListHeight() 
{ 
   // *** define the height of your SIR-list in the line below  
   var sirListHeight = '框高度px'; 
   var allTables = document.getElementsByTagName('tbody'); 
   for (i=0; i < allTables.length; i++) 
   { 
       if ((allTables.innerHTML.indexOf('Blogrings') != -1) && 
           (allTables.innerHTML.toUpperCase().indexOf('<TABLE') == -1)) 
       { 
           sirlist = allTables.lastChild; 
           temp = sirlist.firstChild.innerHTML; 
           sirlist.removeChild(sirlist.firstChild); 
           td = document.createElement('td'); 
           div = document.createElement('div'); 
           div.style.width = '190px'; 
           div.style.height = sirListHeight; 
           div.style.overflow = 'auto'; 
           div.innerHTML = temp; 
           td.appendChild(div); 
           sirlist.appendChild(td); 
           break; 
       } 
   } 
} 
if (navigator.userAgent.indexOf('Mac') == -1) 
   if ((document.URL.indexOf('weblogs') == -1) &&  
       (document.URL.indexOf('guestbook') == -1) && 
       (document.URL.indexOf('events') == -1) && 
       (document.URL.indexOf('reviews') == -1)) 
       adjustSirListHeight(); 
</script> 
<!-- end code provided by Kkx3.com -->  
 
日記外框(一)  
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<style>body {border-style: liquid ; border-top-width: 10px; border-bottom-width: 10px; border-left-width: 10px; 
border-right-width: 10px; border-color: #cccccc;}</style> 
**只要修改數字(粗幼度)和色碼即可 
 
******************************************************* 
 
 
雙向震動板 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<script language = "JavaScript"> 
<!-- 
function shake( ) 
{ 
    for (i = 10; i > 0; i--) 
    { 
        self.moveBy(0,i) 
        self.moveBy(i,0) 
        self.moveBy(0,-i) 
        self.moveBy(-i,0) 
    } 
} 
shake( ); 
//--> 
</script>  
******************************************************* 
 
直向震動板 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<script language = "JavaScript"> 
<!-- 
function shake( ) 
{ 
    for (i = 10; i > 0; i--) 
    { 
        self.moveBy(0,i) 
        self.moveBy(0,-i) 
    } 
} 
shake( ); 
//--> 
</script>  
 
字體變粗 
CODE:  [Copy to clipboard] 
-------------------------------------------------------------------------------- 
 
<strong> 字 </strong> 
******************************************************* 
 
 |