語法展示::  http://home.graffiti.net/qzxsd/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<div id="sDiv0">*</div>
<div id="sDiv1">*</div>
<div id="sDiv2">*</div>
<div id="sDiv3">*</div>
<div id="sDiv4">*</div>
<div id="sDiv5">*</div>
<div id="sDiv6">*</div>
<p></p>
<SCRIPT LANGUAGE="JavaScript1.2">
<!--
/*
Document firework script (By Matt Gabbert, mgabbert@usrtoday.com, http://www.nolag.com)
Modified and permission granted to Dynamic Drive to feature script in archive
For full source and 100's more DHTML scripts, visit http://dynamicdrive.com
*/
//set Interval between each firework display,
var intervals=2000
var sparksOn = true;
var speed = 40;
var power = 3;

//Dont change these values-------
var documentWidth=documentHeight=randomx=randomy=leftcorner=topcorner=0
var ns=(document.layers);
var ie=(document.all);
var sparksAflyin = false;
var allDivs = new Array(10);
var totalSparks = 0;
//-------------------------------

function initAll(){
if(!ns && !ie){
sparksOn = false;
return;
}
setInterval("firework()",intervals)

if (ns)
document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);
for(dNum=0; dNum<7; ++dNum){
if(ie)
allDivs[dNum]=eval('document.all.sDiv'+dNum+'.style');
else
allDivs[dNum]=eval('document.layers["sDiv'+dNum+'"]');
}
}

function firework(){
//below code detects the browser dimenions
if (ie){
documentWidth=document.body.clientWidth
documentHeight=document.body.clientHeight
leftcorner=document.body.scrollLeft
topcorner=document.body.scrollTop
}
else if (ns){
documentWidth=window.innerWidth
documentHeight=window.innerHeight
leftcorner=pageXOffset
topcorner=pageYOffset

}
//below code randomly generates a set of coordinates that fall within the dimension
randomx=leftcorner+Math.floor(Math.random()*documentWidth)
randomy=topcorner+Math.floor(Math.random()*documentHeight)


if(sparksOn){
if(!sparksAflyin){
sparksAflyin=true;
totalSparks=0;
for(var spark=0;spark<=6;spark++){
dx=Math.round(Math.random()*50);
dy=Math.round(Math.random()*50);
moveTo(spark,randomx,randomy,dx,dy);
}
}
}
}

function moveTo(i,tempx,tempy,dx,dy){
if(ie){
if(tempy+80>(document.body.offsetHeight+document.body.scrollTop))
tempy=document.body.offsetHeight+document.body.scrollTop-80;
if(tempx+80>(document.body.offsetWidth+document.body.scrollLeft))
tempx=document.body.offsetWidth+document.body.scrollLeft-80;
}
if(tempx>-50&&tempy>-50){
tempx+=dx;tempy+=dy;
allDivs[i].left=tempx;
allDivs[i].top=tempy;
dx-=power;dy-=power;
setTimeout("moveTo("+i+","+tempx+","+tempy+","+dx+","+dy+")",speed)
}
else
++totalSparks
if(totalSparks==7){
sparksAflyin=false;
totalSparks=0;
}
}
window.onload=initAll
//End-->
</script>

<script language="JavaScript">
cOlOuRs=new Array("abbbff","ffffee","ffff7a","dffffd","ffaaa0","ffddd0")
S_amount = 30;//number of small stars!!!!!
L_amount = 15;//number of larger stars!!!!
S_Ypos = new Array();
S_Xpos = new Array();
L_Ypos = new Array();
L_Xpos = new Array();
S_speed= new Array();
L_speed= new Array();
if (document.all)
{
for (i = 0; i < S_amount; i++)
{
S_Ypos[i] = Math.round(Math.random()*document.body.offsetHeight);
S_Xpos[i] = Math.round(Math.random()*document.body.offsetWidth);
}
for (i = 0; i < L_amount; i++)
{
L_Ypos[i] = Math.round(Math.random()*document.body.offsetHeight);
L_Xpos[i] = Math.round(Math.random()*document.body.offsetWidth);
}
document.write('<div id="Outer" style="position:absolute;top:0px;left:0px">');
document.write('<div id="Inner" style="position:relative">');
for (i = 0; i < S_amount; i++)
{document.write('<div id="ieS_star" style="position:absolute;top:'+S_Ypos[i]+';left:'+S_Xpos[i]+';width:1px;height:1px;background:#fffff0;font-size:1px"></div>');}
for (i = 0; i < L_amount; i++)
{document.write('<div id="ieL_star" style="position:absolute;top:'+L_Ypos[i]+';left:'+L_Xpos[i]+';width:2px;height:2px;background:#ffffff;font-size:2px"></div>');}
document.write('</div>');
document.write('</div>');
for (i = 0; i < L_amount; i++)
{
for (j = 0; j < cOlOuRs.length; j++)
{var NewColour=Math.round(Math.random()*[j])}
document.all.ieS_star[i].style.background=cOlOuRs[NewColour];
document.all.ieL_star[i].style.background=cOlOuRs[NewColour];
}
for (i=0; i < ieS_star.length; i++){S_speed[i]=Math.random()*3+1}
for (i=0; i < ieL_star.length; i++){L_speed[i]=Math.random()*7+2}
function ES_go()
{
document.all.Outer.style.pixelTop=document.body.scrollTop;
for (i=0; i < ieS_star.length; i++)
{
ieS_star[i].style.pixelLeft-=S_speed[i];
if (ieS_star[i].style.pixelLeft < -10){ieS_star[i].style.pixelLeft=window.document.body.offsetWidth}
}
S_timer=setTimeout('ES_go()',30);
}
function EL_go()
{
for (i=0; i < ieL_star.length; i++)
{
ieL_star[i].style.pixelLeft-=L_speed[i];
if (ieL_star[i].style.pixelLeft < -10){ieL_star[i].style.pixelLeft=window.document.body.offsetWidth}
}
L_timer=setTimeout('EL_go()',10);
}
function IeStart()
{
ES_go();
EL_go();
}
IeStart()
}//End Explorer

else if (document.layers)
{
for (i = 0; i < S_amount; i++)
{
S_Ypos[i] = Math.round(Math.random()*window.innerHeight);
S_Xpos[i] = Math.round(Math.random()*window.innerWidth);
document.write("<LAYER NAME='S_star"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0' CLIP='0,0,1,1'></LAYER>");
document.layers["S_star"+i].top = S_Ypos[i];
document.layers["S_star"+i].left = S_Xpos[i];
}
for (i = 0; i < L_amount; i++)
{
L_Ypos[i] = Math.round(Math.random()*window.innerHeight);
L_Xpos[i] = Math.round(Math.random()*window.innerWidth);
document.write("<LAYER NAME='L_star"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0' CLIP='0,0,2,2'></LAYER>");
document.layers["L_star"+i].top = L_Ypos[i];
document.layers["L_star"+i].left = L_Xpos[i];
for (j = 0; j < cOlOuRs.length; j++)
{
var NewColour=Math.round(Math.random()*[j]);
}
document.layers['S_star'+i].bgColor=cOlOuRs[NewColour];
document.layers['L_star'+i].bgColor=cOlOuRs[NewColour];
}
for (i=0; i < S_amount; i++){S_speed[i]=Math.random()*3+1}
for (i=0; i < L_amount; i++){L_speed[i]=Math.random()*7+2}
function NS_go()
{
for (i=0; i < S_amount; i++)
{
var temp="S_star"+i;//50
document.layers[temp].top=S_Ypos[i]+window.pageYOffset;
document.layers['S_star'+i].left-=S_speed[i];
if (document.layers['S_star'+i].left < -10){document.layers['S_star'+i].left=window.innerWidth}
}
S_timer=setTimeout('NS_go()',30);
}
function NL_go()
{
for (i=0; i < L_amount; i++)
{
var temp="L_star"+i
document.layers[temp].top=L_Ypos[i]+window.pageYOffset;
document.layers['L_star'+i].left-=L_speed[i];
if (document.layers['L_star'+i].left < -10){document.layers['L_star'+i].left=window.innerWidth}
}
L_timer=setTimeout('NL_go()',10);
}
function NsStart()
{
NS_go();
NL_go();
}
NsStart();
}//End Netscape
window.onresize = new Function("window.location.reload()");
//-->
</script>


將以下程式碼複製,貼在<head>及</head>標籤之間。


<style>
#sDiv0 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:Aqua;}
#sDiv1 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:red;}
#sDiv2 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:blue;}
#sDiv3 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:orange;}
#sDiv4 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:yellow;}
#sDiv5 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:lightgreen;}
#sDiv6 {position:absolute; height:1; width:1; font-family:arial black; font-size:15px; color:silver;}
</style>

  • PHP、MySQL、CGI 網頁空間
    支援 PHP4/5、MySQL 4.1、CGI ,無限郵件帳號,免費網域優惠。
    www.ismile.com.tw
  • SQL Server 2005
    原生資料加密、通過最嚴苛的應用程式 考驗,以發揮最高的執行效能及安全性
    www.microsoft.com/taiwan/sql
Google 提供的廣告

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::   http://home.graffiti.net/gtdsdsadsa/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<SCRIPT language=JavaScript>
<!--annie
if (document.all){
xL=6;
xH=0;
xW=0;
xR=0;
xE=0;
xMY=0;
xMX=0;
xWd=0;
xHd=0;
xF=new Array();
xY=new Array();
xX=new Array();
xS=new Array();
xA=new Array();
xB=new Array();
ini=new Array();
cl=new Array('#fff000','#0000FF','#ff0000','#00ff00','#ff00ff','#ffa500')
document.write('<div id="xouter" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < xL; i++){
document.write('<div id="xie" style="position:absolute;top:0;left:0;width:10px;height:10px;'
+'font-family:Courier New;font-size:50px;color:#ffffff">.</div>');
}
document.write('</div></div>');
//Initial Placement!
function Set(){
for (i=0; i < xL; i++){
xH=window.document.body.offsetHeight;
xW=window.document.body.offsetWidth;
xA[i]=Math.round(Math.random()*xH);
xB[i]=Math.round(Math.random()*xW);
xS[i]=Math.random()*0.07+0.05;
xR=Math.round(Math.random()*3);
xE=Math.round(Math.random()*2500+50)
if (xR == 3) xB[i]=-xE;
if (xR == 2) xB[i]=xW+xE;
if (xR == 1) xA[i]=-xE;
if (xR == 0) xA[i]=xH;
xF[i]=xW/14;
}
}
Set();
function Assign(){
xouter.style.top=document.body.scrollTop;
for (i=0; i < xL; i++){
xF[i]-=xS[i]*25;
if (xF[i] < 4) xF[i]=3;
xie[i].style.top =xY[i];
xie[i].style.left=xX[i];
xie[i].style.fontSize=xF[i];
xie[i].style.filter='glow(color='+ini[i]+', strength='+xF[i]/3+')';
}
}
function fly(){
var N=Math.floor(Math.random()*cl.length)
xMY=window.document.body.clientHeight/2;
xMX=window.document.body.clientWidth/2;
xWd=Math.round(Math.random()*40+5);
xHd=Math.round(Math.random()*30+5);
for (i=0; i < xL; i++)
{
xY[i]=xA[i]+=(xMY-xA[i])*(xS[i]);
xX[i]=xB[i]+=(xMX-xB[i])*(xS[i]);
if ((xX[i] > xMX-xWd) && (xX[i] < xMX+xWd) && (xY[i] > xMY-xHd) && (xY[i] < xMY+xHd)){

xH=window.document.body.offsetHeight;
xW=window.document.body.offsetWidth;
xA[i]=Math.round(Math.random()*xH);
xB[i]=Math.round(Math.random()*xW);
xS[i]=Math.random()*0.05+0.05;
xR=Math.round(Math.random()*3);
xE=Math.round(Math.random()*50+50)
if (xR == 3) xB[i]=-xE;
if (xR == 2) xB[i]=xW+xE;
if (xR == 1) xA[i]=-xE;
if (xR == 0) xA[i]=xH+xE;
}
if ((xX[i] < 0) || (xX[i] > xW) || (xY[i] < 0) || (xY[i] > xH))
{
xF[i]=xW/14;
ini[i]=cl[N];
}
}
Assign();
setTimeout('fly()',10);
}
fly();
}
//annie -->
</SCRIPT>



  • PHP、MySQL、CGI 網頁空間
    支援 PHP4/5、MySQL 4.1、CGI ,無限郵件帳號,免費網域優惠。
    www.ismile.com.tw
  • SQL Server 2005
    原生資料加密、通過最嚴苛的應用程式 考驗,以發揮最高的執行效能及安全性
    www.microsoft.com/taiwan/sql
Google 提供的廣告

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::  http://home.graffiti.net/cvfgggfd/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<div align="center">
  <table border="0" width="339" height="247">
    <tr>
      <td width="167" height="113" valign="middle" align="center"><a onmouseover="showrings()" onmouseout="hiderings()" href="http://blog.pixnet.net/como0925"><img border="0" src="圖片網址
" width="34" height="27"></a></td>
      <td width="168" height="113" valign="middle" align="center"><a onmouseout="hiderings()" onmouseover="showrings()" href="http://blog.pixnet.net/como0925"><img border="0" src="圖片網址" width="31" height="31"></a></td>
    </tr>
  </table>
</div>


將以下程式碼複製,貼在<head>及</head>標籤之間。

<script>
// CREDITS:
// Flashlike rollover-animation for all your links
// by Urs Dudli and Peter Gehrig
// Copyright (c) 2000 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.com/fast/index.html
// info@24fun.com
// 11/14/2000

// IMPORTANT:
// If you add this script to a script-library or script-archive
// you have to add a link to http://www.24fun.com/fast/index.html on the webpage
// where this script will be running.


// the number of rings
var ringnumber=4

// do not edit the code below
var x,y
var timer
var i_fontsize=new Array
var step=new Array
ringnumber=ringnumber-1
var maxfontsize=600
var startfontsize=1

for (i=0;i<=ringnumber;i++) {
 i_fontsize[i]=startfontsize
 step[i]=ringnumber*i*10
 startfontsize=(maxfontsize/ringnumber)*(i+1)
}

function cursorposition(e){
 x=event.clientX+document.body.scrollLeft
 y=event.clientY+document.body.scrollTop
}

function showrings() {
if (document.all) {
 for (i=0;i<=ringnumber;i++) {
  if (i_fontsize[i]>=maxfontsize) {i_fontsize[i]=1;step[i]=1}
  var thisring=eval("document.all.ring"+i+".style")
  thisring.visibility="visible"
  thisring.fontSize=i_fontsize[i]
  thisring.color="rgb("+Math.floor(i_fontsize[i]/2.0)+","+Math.floor(i_fontsize[i]/2.0)+",255)"
     thisring.posLeft=x-(Math.floor(i_fontsize[i]/3))
  thisring.posTop=y-(Math.floor(i_fontsize[i]/1.4)) 
  step[i]+=2
  i_fontsize[i]+=step[i]
 }
 timer=setTimeout("showrings()",50)
}
}

function hiderings(e){
if (document.all) {
 clearTimeout(timer)
 startfontsize=0
 for (i=0;i<=ringnumber;i++) {
  thisring=eval("document.all.ring"+i+".style")
  thisring.visibility="hidden"
  i_fontsize[i]=startfontsize
  step[i]=ringnumber*i*10
  startfontsize=Math.floor((maxfontsize/ringnumber))*(i+1)
 }
}
}

if (document.all) {
 document.onmousemove=cursorposition;
}

if (document.all) {
 for (i=0;i<=ringnumber;i++) {
 document.write("<DIV id='ring"+i+"' style='position:absolute;font-family:Verdana;visibility:hidden;'>O</DIV>")
 }
 document.write("<DIV style='position:relative;'>")
}
</script>




  • PHP、MySQL、CGI 網頁空間
    支援 PHP4/5、MySQL 4.1、CGI ,無限郵件帳號,免費網域優惠。
    www.ismile.com.tw
  • SQL Server 2005
    原生資料加密、通過最嚴苛的應用程式 考驗,以發揮最高的執行效能及安全性
    www.microsoft.com/taiwan/sql
Google 提供的廣告

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::  http://home.graffiti.net/htgfddds/

 


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<applet code="ansnow.class" width=553 height=351>              
              <param name=credits value="Applet by Fabio Ciucci (www.anfyteam.com)">              
              <param name=regcode value="NO">              
              <param name=reglink value="NO">              
              <param name=regnewframe value="YES">              
              <param name=regframename value="_blank">              
              <param name=statusmsg value="Snow">              
              <param name=flakes1 value="500">              
              <param name=flakes2 value="300">              
              <param name=flakes3 value="100">              
              <param name=flakes4 value="8">              
              <param name=windmax value="1">              
              <param name=windvariation value="7">              
              <param name=speed value="8">              
              <param name=backimage value="下雪特效底圖">              
              <param name=bgcolor value="000133">              
              <param name=overtext value="NO">              
              <param name=overimg value="NO">              
              <param name=overimgX value="0">              
              <param name=overimgY value="0">              
              <param name=memdelay value="1000">              
              <param name=priority value="3">              
              <param name=MinSYNC value="10">              
              Sorry, your browser doesn't support Java.               
            </applet> 



不要忘記付件也要一起帶回家喔~!!......     >>>>>>我是附件帶我回家<<<<<<<

下載後解壓縮,置於網頁同一目錄下

 

 

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::  http://home.graffiti.net/dfhthfdx/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<script LANGUAGE="JavaScript1.2">
<!-- 
var no = 10; 
var speed = 10; 
var snowflake = "figure-7.gif";
 
var ns4up = (document.layers) ? 1 : 0;  
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp;    
var am, stx, sty;  
var i, doc_width = 1024, doc_height = 768;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) {  
dx[i] = 0;                        
xp[i] = Math.random()*(doc_width-50);
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;         
stx[i] = 0.02 + Math.random()/10; 
sty[i] = 0.7 + Math.random();     
if (ns4up) {                      
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
   }
} else if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
      }
   }
}
function snowNS() {  // Netscape main animation function
for (i = 0; i < no; ++ i) {  // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE() {  // IE main animation function
for (i = 0; i < no; ++ i) {  // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowIE()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
//-->
</script>

 

不要忘記付件也要一起帶回家喔~!!...... >>>>>>我是附件帶我回家<<<<<<<

將圖檔置於網頁同一目錄下

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::  http://home.graffiti.net/acfrddfds/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<script language="JavaScript1.2">
<!--
var ns=(document.layers);
var ie=(document.all);
var w3=(document.getElementById && self.innerWidth && (window.pageXOffset>-1));
//my way of making sure the browser will have what I need

var allDivs      = new Array(14);
var documentWidth,documentHeight;

function initAll(){
 if(!ns && !ie && !w3) return;

 for(dNum=0; dNum<10; ++dNum){
  if(ie)  allDivs[dNum]=eval('document.all.sDiv'+dNum+'.style');
  else if(ns) allDivs[dNum]=eval('document.layers["sDiv'+dNum+'"]');
  else if(w3) allDivs[dNum]=eval('document.getElementById("sDiv'+dNum+'").style');
  moveTo(dNum,0,0);
 }  
}

function moveTo(i,tempx,tempy){
 if (ie){
  documentWidth  =document.body.offsetWidth+document.body.scrollLeft-20;
  randomy=Math.floor(Math.random()*document.body.offsetHeight)+document.body.scrollTop-20;
 }
 else if (ns){
  documentWidth=window.innerWidth+window.pageXOffset-20;
  randomy=Math.floor(Math.random()*window.innerHeight)+window.pageYOffset-20;
 }
 else if (w3){
  documentWidth=self.innerWidth+window.pageXOffset-20;
  randomy=Math.floor(Math.random()*self.innerHeight)+window.pageYOffset-20;
 }

 if(tempx>-50){
  tempx-=45;
  allDivs[i].left=tempx;
  allDivs[i].top =tempy;
  setTimeout("moveTo("+i+","+tempx+","+tempy+")",40)
 }
 else
  setTimeout("moveTo("+i+",documentWidth-60,randomy)",2000/i+40);
}

window.onload=initAll
//End-->
</script>
<div id="sDiv0">
  *
</div>
<div id="sDiv1">
  *
</div>
<div id="sDiv2">
  *
</div>
<div id="sDiv3">
  *
</div>
<div id="sDiv4">
  *
</div>
<div id="sDiv5">
  *
</div>
<div id="sDiv6">
  *
</div>
<div id="sDiv7">
  *
</div>
<div id="sDiv8">
  *
</div>
<div id="sDiv9">
  *
</div>
<div id="sDiv10">
  *
</div>
<div id="sDiv11">
  *
</div>
<div id="sDiv12">
  *
</div>
<div id="sDiv13">
  *
</div>

 
將以下程式碼複製,貼在<head>及</head>標籤之間。

<style type="text/css">
<!--
.mt
{
 font-size:16px;
 color:66FF99;
}
A:ACTIVE,  A:LINK, A:VISITED
{
 font-size:11px;
 color : ffffcc;
    font-family : Verdana, Arial, Helvetica, sans-serif;
    font-weight : bold;
    text-decoration : none;
}
A:HOVER
{
        color : 009F8C;
        text-decoration : underline;
}
BODY {
 background-color : black;

 scrollbar-track-color : black;
}

#sDiv0 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:Aqua;}
#sDiv1 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:red;}
#sDiv2 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:blue;}
#sDiv3 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:orange;}
#sDiv4 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:yellow;}
#sDiv5 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:Aqua;}
#sDiv6 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:red;}
#sDiv7 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:blue;}
#sDiv8 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:orange;}
#sDiv9 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:yellow;}
#sDiv10 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:66ffff;}
#sDiv11 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:ff6600;}
#sDiv12 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:ff3300;}
#sDiv13 {position:absolute; height:1; width:1; font-family:arial black; font-size:16px; color:00ff66;}
//-->
</style>

 

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::  http://home.graffiti.net/fgbgfdsg/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<script language="JavaScript">
<!--
if (document.all){
kg=new Image();
kg.src="figure395.gif";
document.write('<span id="rings" style="position:absolute;top:0px;left:0px">'
+'<img src="figure395.gif" name="kg" style="position:relative"></span>');
var TimeLinethree = 115;
var TimeLineTwo = 10;
var TimeLineOne = 10;
var ThreeStep = 2.1;
var TwoStep = 5.5;
var OneStep = 2.5;
var xp = 100;
var yp = 100;
function SmokeRing(){
document.all.rings.document.images["kg"].style.filter='alpha(opacity='+TimeLinethree+')';
document.all.rings.document.images["kg"].style.top=yp + (-TimeLineOne);
document.all.rings.document.images["kg"].style.left=xp + (-TimeLineOne);
document.all.rings.document.images["kg"].width=TimeLineTwo;
document.all.rings.document.images["kg"].height=TimeLineTwo;
TimeLinethree-=ThreeStep;
TimeLineTwo+=TwoStep;
TimeLineOne+=OneStep;
setTimeout('SmokeRing()',10);
if ((TimeLineTwo > 380) || (TimeLineOne > 380) || (TimeLinethree < 0))
{TimeLineTwo=0;TimeLineOne=0;TimeLinethree=85;
stop=window.document.body.clientHeight-280;
sleft=window.document.body.clientWidth/2.5;//?
yp=Math.round(Math.random()*stop);
xp=Math.round(Math.random()*sleft);
document.all.rings.style.top=yp+document.body.scrollTop;
document.all.rings.style.left=xp+document.body.scrollLeft;
}
if ((yp < 80) || (xp < 80))
{
yp+=80;
xp+=80;
} }}
if (document.all)SmokeRing();
// -->
</script>

 

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::  http://home.graffiti.net/kihdfdsd/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<applet code="AnWater.class" width="圖寬" height="圖高">
<param name="image" value="圖片檔名">
<!-- 您可以自己修改以下設定 -->
<param name="res" value="1">
<param name="light" value="YES">
<param name="autodesign" value="YES">
<param name="density" value="2">
<param name="fishnum" value="0">
<param name="cross" value="NO">
<param name="crossfactor" value="15">
<param name="rainsize" value="0">
<param name="rainfactor" value="10">
<param name="srainsize" value="0">
<param name="srainfactor" value="5">
<param name="memdelay" value="1000">
<param name="priority" value="3">
</applet>


不要忘記付件也要一起帶回家喔~!!......     >>>>>>我是附件帶我回家<<<<<<<

下載後解壓縮,置於網頁同一目錄下

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::  http://home.graffiti.net/sdetgfdg/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<applet code="stn_bump.class" width="圖片寬" height="圖片高">
<param name="color" value="圖案檔名">
<param name="bump" value="圖案檔名">
<!-- 您可以自己修改以下設定 -->
<param name="hred" value="60">
<param name="hgreen" value="130">
<param name="hblue" value="190">
<param name="hexp" value="60">
</applet>


不要忘記付件也要一起帶回家喔~!!......     >>>>>>我是附件帶我回家<<<<<<<

置於網頁同一目錄下

eeredqq 發表在 痞客邦 留言(0) 人氣()

語法展示::  http://home.graffiti.net/dgrghdaeaw/


請用IE6.0或更新版本觀看語法特效展示

將以下程式碼複製,貼在<body>及</body>標籤之間。

<div id="point1" STYLE="position:absolute;visibility:visible;"><a href="超連結網址"><img src="圖片網址" width="88" height="31" border="0"></a>
</div>
<SCRIPT LANGUAGE="JavaScript">
var xPos = 20;
var step = 1;
var delay = 30;
var yPos = 0;
var height = 0;
var offset = 0;
var yon = 0;
var name = navigator.appName;
if (name == "Microsoft Internet Explorer") {
yPos = document.body.clientHeight;
point1.style.top = yPos;
}
else {
yPos = window.innerHeight;
document.point1.pageY = yPos;
document.point1.visibility = "hidden";
}
function changePos() {
if (yon == 0) {
yPos = yPos - step;
}
else {
yPos = yPos + step;
}
if (name == "Microsoft Internet Explorer") {
height = document.body.clientHeight;
offset = point1.offsetHeight;
}
else {
height = window.innerHeight;
offset = document.point1.clip.height;

if (yPos < 0) {
yon = 1;
yPos = 0;
}
if (yPos >= (height - offset)) {
yon = 0;
yPos = (height - offset);
}
if (name == "Microsoft Internet Explorer") {
point1.style.left = xPos;
point1.style.top = yPos + document.body.scrollTop;
}
else {
document.point1.pageX = xPos;
document.point1.pageY = yPos + window.pageYOffset;
   }
}
function start()
{
if (name != "Microsoft Internet Explorer") {
document.point1.visibility = "visible";
}
loopfunc();
}
function loopfunc()
{
changePos();
setTimeout('loopfunc()',delay);
}
</script>


將以下程式碼複製,貼在<body >標籤裡面。

 onLoad="start()"

eeredqq 發表在 痞客邦 留言(0) 人氣()