2008年2月4日 星期一

歡迎視窗

將以下的控制碼先複製起來。


 

然後將剛剛複製的東西在網頁中的 <BODY> 之中貼上就大功告成了!


 


 

<BODY onLoad="alert('歡迎您來到adea教學網!\n\n好東西要和好朋友分享!')" >


 


 

最後,更改原始碼中的歡迎內容就可以了!


 

那個 \n 就是強迫換行的參數

關閉視窗

"連結"輸入


 

javascript:window.close();

鎖定右鍵及拖曳選取

將語法插入在<body>中


 

ONDRAGSTART="window.event.returnValue=false" ONCONTEXTMENU="window.event.returnValue=false" onSelectStart="event.returnValue=false"

標題列跑馬燈

將語法插入在</head>之後


 

----------------------------------------


 

<script language="JavaScript1.2">


 

var message="敬請給予本站支持!"

var message=message+" "

i="0"            

var temptitle=""

var speed="150"


 

function titler(){

if (!document.all&&!document.getElementById)

return

document.title=temptitle+message.charAt(i) //sets the initial title

temptitle=temptitle+message.charAt(i) //increases the title by one letter

i++                     //increments the counter

if(i==message.length)             //determines the end of the message

{

i="0"                     //resets the counter at the end of the message

temptitle=""                 //resets the title to a blank value

}

setTimeout("titler()",speed)          //Restarts. Remove line for no-repeat.

}


 

window.onload=titler

</script>

圖片文字跑馬燈

網頁中的 <BODY> 之後貼上


 

------------------------------------------


 

<script language="JavaScript1.2">

<!--

var marqueewidth=470; // 跑馬燈的寬度(IE 中可用百分比,注意要加引號)

var marqueeheight=40; // 跑馬燈的高度

var speed=6; // 捲動速度(越大越快)

var marqueecontents='<IMG src="8831.gif" height=31 width=88 border=0> 這是一個新型的跑馬燈!'; // 跑馬燈顯示的字串


 

if (document.all) document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'">'+marqueecontents+'</marquee>');

function regenerate() {window.location.reload();}

function regenerate2(){

if (document.layers){

setTimeout("window.onresize=regenerate",450);

intializemarquee();

}

}

function intializemarquee(){

document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>');

document.cmarquee01.document.cmarquee02.document.close();

thelength=document.cmarquee01.document.cmarquee02.document.width;

scrollit();

}

function scrollit(){

if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){

document.cmarquee01.document.cmarquee02.left-=speed;

setTimeout("scrollit()",100);

} else {

document.cmarquee01.document.cmarquee02.left=marqueewidth;

scrollit();

}

}

window.onload=regenerate2;

//-->

</script>

<ilayer width=&{marqueewidth}; height=&{marqueeheight}; name="cmarquee01">

<layer name="cmarquee02"></layer>

</ilayer>

進站時間

貼在<body>之後


 


 

<SCRIPT language="JavaScript">

var vn="Microsoft Internet Explorer";

var some;

if(navigator.appName!=vn)

some="11";

else

some="1911";

today=new Date();

var h = today.getHours();

var m = today.getMinutes();

var t = " " + (h) + ":" + (m) + "分";

function initArray(){

this.length=initArray.arguments.length

for(var i=0;i<this.length;i++)

this[i+1]=initArray.arguments[i] }

var d=new initArray("星期日", "星期一","星期二", "星期三","星期四", "星期五", "星期六");

document.write("民國",today.getYear()-some,"年",today.getMonth()+1,"月",today.getDate(),"日",d[today.getDay()+1]," ",t, "");

</SCRIPT>


 

游標圖示

在網頁中的 <body> 之後貼上


 

------------------------------------------------------


 


 

<div id="cursor" style="position:absolute; left:100px; top:160px; width:100px; height:25px; z-index:0; visibility: visible">

<img src="bw.gif" >

</div><script language="JavaScript">

<!--

function YY_Mousetrace(evnt) { //v1.2 copyright (c)1998 Yaro von Flocken

if (yyns4)

{if (evnt.pageX) {yy_ml=evnt.pageX; yy_mt=evnt.pageY;} }

else{

yy_ml=(event.clientX + document.body.scrollLeft);

yy_mt=(event.clientY + document.body.scrollTop);

}

if (yy_tracescript)eval(yy_tracescript)

}

function m()

{

document.all.cursor.style.left=yy_ml+10

document.all.cursor.style.top=yy_mt+10

}

//-->

</script>

<script language="JavaScript">

<!--

var yyns4=window.Event?true:false; var yy_mt = 0; var yy_ml = 0;

if (yyns4) document.captureEvents(Event.MOUSEMOVE);

document.onmousemove = YY_Mousetrace;

yy_tracescript = 'm()';

//-->

</script>

游標跑馬燈

將語法插入在</head>之後


 

----------------------------------------------


 

<SCRIPT language=JavaScript1.2>

<!--


 

//1) set message to display

var scroller_msg=' 這個跑馬燈不佔空間又美觀,合乎你的標準唄!'

//2) set whether message should auto disappear after x seconds (0=perpetual).

//Note that double clicking page will also dismiss message

var dismissafter=0


 

var initialvisible=0

if (document.all)

document.write('<marquee id="curscroll" style="position:absolute;width:120px;border:1px solid #F09C48;font-size:12px;font-face:新細明體;background-color:white;visibility:hidden">'+scroller_msg+'</marquee>')


 

function followcursor(){

//move cursor function for IE


 

if (initialvisible==0){

curscroll.style.visibility="visible"

initialvisible=1

}


 

curscroll.style.left=document.body.scrollLeft+event.clientX+10

curscroll.style.top=document.body.scrollTop+event.clientY+10

}


 

function dismissmessage(){

curscroll.style.visibility="hidden"

}


 


 

if (document.all){

document.onmousemove=followcursor

if (dismissafter!=0)

setTimeout("dismissmessage()",dismissafter*1000)

}


 


 


 

//-->

</SCRIPT>

游標時鐘

貼在</head>之後


 

----------------------------------------------


 

<SCRIPT language=JavaScript>

dCol='8A78FF';//date colour.

fCol='8A78FF';//face colour.

sCol='8A78FF';//seconds colour.

mCol='8A78FF';//minutes colour.

hCol='8A78FF';//hours colour.

ClockHeight=40;

ClockWidth=40;

ClockFromMouseY=0;

ClockFromMouseX=100;


 

//Alter nothing below! Alignments will be lost!


 

d=new Array("SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY");

m=new Array("JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER");

date=new Date();

day=date.getDate();

year=date.getYear();

if (year < 2000) year=year+1900;

TodaysDate=" "+d[date.getDay()]+" "+day+" "+m[date.getMonth()]+" "+year;

D=TodaysDate.split('');

H='...';

H=H.split('');

M='....';

M=M.split('');

S='.....';

S=S.split('');

Face='1 2 3 4 5 6 7 8 9 10 11 12';

font='Arial';

size=1;

speed=0.5;

ns=(document.layers);

ie=(document.all);

Face=Face.split(' ');

n=Face.length;

a=size*10;

ymouse=0;

xmouse=0;

scrll=0;

props="<font face="+font+" size="+size+" color="+fCol+"><B>";

props2="<font face="+font+" size="+size+" color="+dCol+"><B>";

Split=360/n;

Dsplit=360/D.length;

HandHeight=ClockHeight/4.5

HandWidth=ClockWidth/4.5

HandY=-7;

HandX=-2.5;

scrll=0;

step=0.02;

currStep=0;

y=new Array();x=new Array();Y=new Array();X=new Array();

for (i=0; i < n; i++){y[i]=0;x[i]=0;Y[i]=0;X[i]=0}

Dy=new Array();Dx=new Array();DY=new Array();DX=new Array();

for (i=0; i < D.length; i++){Dy[i]=0;Dx[i]=0;DY[i]=0;DX[i]=0}

if (ns){

for (i=0; i < D.length; i++)

document.write('<layer name="nsDate'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props2+D[i]+'</font></center></layer>');

for (i=0; i < n; i++)

document.write('<layer name="nsFace'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+Face[i]+'</font></center></layer>');

for (i=0; i < S.length; i++)

document.write('<layer name=nsSeconds'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+sCol+'><center><b>'+S[i]+'</b></center></font></layer>');

for (i=0; i < M.length; i++)

document.write('<layer name=nsMinutes'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+mCol+'><center><b>'+M[i]+'</b></center></font></layer>');

for (i=0; i < H.length; i++)

document.write('<layer name=nsHours'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+hCol+'><center><b>'+H[i]+'</b></center></font></layer>');

}

if (ie){

document.write('<div id="Od" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

for (i=0; i < D.length; i++)

document.write('<div id="ieDate" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props2+D[i]+'</B></font></div>');

document.write('</div></div>');

document.write('<div id="Of" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

for (i=0; i < n; i++)

document.write('<div id="ieFace" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props+Face[i]+'</B></font></div>');

document.write('</div></div>');

document.write('<div id="Oh" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

for (i=0; i < H.length; i++)

document.write('<div id="ieHours" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+hCol+';text-align:center;font-weight:bold">'+H[i]+'</div>');

document.write('</div></div>');

document.write('<div id="Om" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

for (i=0; i < M.length; i++)

document.write('<div id="ieMinutes" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+mCol+';text-align:center;font-weight:bold">'+M[i]+'</div>');

document.write('</div></div>')

document.write('<div id="Os" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

for (i=0; i < S.length; i++)

document.write('<div id="ieSeconds" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+sCol+';text-align:center;font-weight:bold">'+S[i]+'</div>');

document.write('</div></div>')

}

(ns)?window.captureEvents(Event.MOUSEMOVE):0;

function Mouse(evnt){

ymouse = (ns)?evnt.pageY+ClockFromMouseY-(window.pageYOffset):event.y+ClockFromMouseY;

xmouse = (ns)?evnt.pageX+ClockFromMouseX:event.x+ClockFromMouseX;

}

(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;

function ClockAndAssign(){

time = new Date ();

secs = time.getSeconds();

sec = -1.57 + Math.PI * secs/30;

mins = time.getMinutes();

min = -1.57 + Math.PI * mins/30;

hr = time.getHours();

hrs = -1.575 + Math.PI * hr/6+Math.PI*parseInt(time.getMinutes())/360;

if (ie){

Od.style.top=window.document.body.scrollTop;

Of.style.top=window.document.body.scrollTop;

Oh.style.top=window.document.body.scrollTop;

Om.style.top=window.document.body.scrollTop;

Os.style.top=window.document.body.scrollTop;

}

for (i=0; i < n; i++){

var F=(ns)?document.layers['nsFace'+i]:ieFace[i].style;

F.top=y[i] + ClockHeight*Math.sin(-1.0471 + i*Split*Math.PI/180)+scrll;

F.left=x[i] + ClockWidth*Math.cos(-1.0471 + i*Split*Math.PI/180);

}

for (i=0; i < H.length; i++){

var HL=(ns)?document.layers['nsHours'+i]:ieHours[i].style;

HL.top=y[i]+HandY+(i*HandHeight)*Math.sin(hrs)+scrll;

HL.left=x[i]+HandX+(i*HandWidth)*Math.cos(hrs);

}

for (i=0; i < M.length; i++){

var ML=(ns)?document.layers['nsMinutes'+i]:ieMinutes[i].style;

ML.top=y[i]+HandY+(i*HandHeight)*Math.sin(min)+scrll;

ML.left=x[i]+HandX+(i*HandWidth)*Math.cos(min);

}

for (i=0; i < S.length; i++){

var SL=(ns)?document.layers['nsSeconds'+i]:ieSeconds[i].style;

SL.top=y[i]+HandY+(i*HandHeight)*Math.sin(sec)+scrll;

SL.left=x[i]+HandX+(i*HandWidth)*Math.cos(sec);

}

for (i=0; i < D.length; i++){

var DL=(ns)?document.layers['nsDate'+i]:ieDate[i].style;

DL.top=Dy[i] + ClockHeight*1.5*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;

DL.left=Dx[i] + ClockWidth*1.5*Math.cos(currStep+i*Dsplit*Math.PI/180);

}

currStep-=step;

}

function Delay(){

scrll=(ns)?window.pageYOffset:0;

Dy[0]=Math.round(DY[0]+=((ymouse)-DY[0])*speed);

Dx[0]=Math.round(DX[0]+=((xmouse)-DX[0])*speed);

for (i=1; i < D.length; i++){

Dy[i]=Math.round(DY[i]+=(Dy[i-1]-DY[i])*speed);

Dx[i]=Math.round(DX[i]+=(Dx[i-1]-DX[i])*speed);

}

y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);

x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);

for (i=1; i < n; i++){

y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);

x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);

}

ClockAndAssign();

setTimeout('Delay()',20);

}

if (ns||ie)window.onload=Delay;

</SCRIPT>


 

<!-- END Mouse-Clock CODE the Code

was design by Eric Chen!!!-->

設本站為首頁

http://www.dob.com.tw/:將網址改為自己的首頁


 

【將本站社為首頁】:自行修改此段文字


 

---------------------------------------------


 

<A HREF="#" ONCLICK="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.dob.com.tw/');">【將本站社為首頁】</A>


 

彗星圖片游標

1.將語法插入在</head>之後


 

2.將語法中的圖檔名稱更換成自訂的圖檔名稱即可


 

<script>


 

/*

Cross browser cursor trailer script

By Brian Caputo (bcaputo@icdc.com)

Permission given to Dynamicdrive.com

to feature the script in it's DHTML archive

For 100's more DHTML scripts and components,

visit Dynamicdrive.com

*/


 

B=document.all;

C=document.layers;

T1=new Array("trail1.gif",38,35,"trail2.gif",30,31,"trail3.gif",28,26,"trail4.gif",22,21,"trail5.gif",16,16,"trail6.gif",10,10)

nos=parseInt(T1.length/3)

rate=50

ie5fix1=0;

ie5fix2=0;

for (i=0;i<nos;i++){

createContainer("CUR"+i,i*10,i*10,i*3+1,i*3+2,"","<img src='"+T1[i*3]+"' width="+T1[(i*3+1)]+" height="+T1[(i*3+2)]+" border=0>")}

function createContainer(N,Xp,Yp,W,H,At,HT,Op,St){

with (document){

write((!B) ? "<layer id='"+N+"' left="+Xp+" top="+Yp+" width="+W+" height="+H : "<div id='"+N+"'"+" style='position:absolute;left:"+Xp+"; top:"+Yp+"; width:"+W+"; height:"+H+"; ");

if(St){

if (C)

write(" style='");

write(St+";' ")

}

else write((B)?"'":"");

write((At)? At+">" : ">");

write((HT) ? HT : "");

if (!Op)

closeContainer(N)

}

}

function closeContainer(){

document.write((B)?"</div>":"</layer>")

}

function getXpos(N){

return (B) ? parseInt(B[N].style.left) : C[N].left

}

function getYpos(N){

return (B) ? parseInt(B[N].style.top) : C[N].top

}


 

function moveContainer(N,DX,DY){

c=(B) ? B[N].style :C[N];c.left=DX;c.top=DY

}

function cycle(){

//if (IE5)

if (document.all&&window.print){

ie5fix1=document.body.scrollLeft;

ie5fix2=document.body.scrollTop;

}

for (i=0;i<(nos-1);i++){

moveContainer("CUR"+i,getXpos("CUR"+(i+1)),getYpos("CUR"+(i+1)))

}

}

function newPos(e){

moveContainer("CUR"+(nos-1),(B)?event.clientX+ie5fix1:e.pageX+2,(B)?event.clientY+ie5fix2:e.pageY+2

)

}

if(document.layers)

document.captureEvents(Event.MOUSEMOVE)

document.onmousemove=newPos

setInterval("cycle()",rate)

</script>

彗星游標

1.貼在</head>之後


 

<STYLE>

.spanstyle{font-size: 9pt; position: absolute; top: -50px; visibility: visible}

</STYLE>

<script language="JavaScript">

var message="Hello! 歡 迎 光 臨";

var x,y;

var step=12;

var flag=0;


 

message=message.split("");

var xpos=new Array();

for (i=0;i<=message.length-1;i++) {

xpos[i]=-50;

}


 

var ypos=new Array();

for (i=0;i<=message.length-1;i++) {

ypos[i]=-50;

}


 

function handlerMM(e) {

x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX+20;

y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY;

flag=1;

}


 

function makesnake() {

if (flag==1 && document.all) {

for (i=message.length-1; i>=1; i--) {

xpos[i]=xpos[i-1]+step;

ypos[i]=ypos[i-1];

}

xpos[0]=x+step;

ypos[0]=y;


 

for (i=0; i<=message.length-1; i++) {

var thisspan = eval("span"+(i)+".style");

thisspan.posLeft=xpos[i];

thisspan.posTop=ypos[i];

thisspan.color=Math.random() * 255 * 255 * 255 + Math.random() * 255 * 255 + Math.random() * 255;

}

}

else if (flag==1 && document.layers) {

for (i=message.length-1; i>=1; i--) {

xpos[i]=xpos[i-1]+step;

ypos[i]=ypos[i-1];

}

xpos[0]=x+step;

ypos[0]=y;


 

for (i=0; i<message.length-1; i++) {

var thisspan = eval("document.span"+i);

thisspan.left=xpos[i];

thisspan.top=ypos[i];

thisspan.color=Math.random() * 255 * 255 * 255 + Math.random() * 255 * 255 + Math.random() * 255;

}

}

}


 


 

for (i=0;i<=message.length-1;i++) {

document.write("<span id='span"+i+"' class='spanstyle'>");

document.write(message[i]);

document.write("</span>");

}


 

if (document.layers) {

document.captureEvents(Event.MOUSEMOVE);

}

document.onmousemove = handlerMM;


 

function pageonload() {

makesnake();

window.setTimeout("pageonload();", 2);

}

</script>


 

2.貼在<body>中


 

onload="javascript:pageonload();"

停留時間

1.將以下的控制碼先複製起來。


 

然後在網頁中的 </HEAD> 之後將剛剛複製的東西貼上


 

------------------------------------------------------------------


 

<SCRIPT LANGUAGE="JAVASCRIPT">

<!--

var ap_name = navigator.appName;

var ap_vinfo = navigator.appVersion;

var ap_ver = parseFloat(ap_vinfo.substring(0,ap_vinfo.indexOf('(')));


 


 

var time_start = new Date();

var clock_start = time_start.getTime();

var dl_ok=false;


 


 

function init ()

{

if(ap_name=="Netscape" && ap_ver>=3.0)

dl_ok=true;

return true;

}


 


 

function get_time_spent ()

{

var time_now = new Date();

return((time_now.getTime() - clock_start)/1000);

}


 


 

function show_secs () // show the time user spent on the side

{

var i_total_secs = Math.round(get_time_spent());

var i_secs_spent = i_total_secs % 60;

var i_mins_spent = Math.round((i_total_secs-30)/60);

var s_secs_spent = "" + ((i_secs_spent>9) ? i_secs_spent : "0" + i_secs_spent);

var s_mins_spent = "" + ((i_mins_spent>9) ? i_mins_spent : "0" + i_mins_spent);

document.fm0.time_spent.value = s_mins_spent + ":" + s_secs_spent;

window.setTimeout('show_secs()',1000);

}


 


 

// -->


 


 

</SCRIPT>


 


 

------------------------------------------------------------


 


 

2.在<body中插入下列語法即可


 

------------------------------------------------------------


 

onLoad="init(); window.setTimeout('show_secs()',1);"


 

------------------------------------------------------------


 

3.在<body>之號插入以下語法


 

------------------------------------------------------------


 

<form name="fm0" onSubmit="0">

<font size="-1"><I><FONT COLOR="#888888">停留時間:</FONT></I></font><br>

<INPUT type="text" name="time_spent" size=7 onFocus="this.blur()">

</form>


 

------------------------------------------------------------

此處可自行更改色彩<FONT COLOR="black">

"停留時間"這四字可自行更換

浮動圖示

貼在<body> 之前


 


 

<DIV id="waterMark" style="position:absolute">

<A href="index.htm"><IMG src="logo1515.gif" width="20" height="20" border=0></A>

</DIV>

<script language="JavaScript1.2">

<!--

// Watermark script by Paul Anderson, CNET Builder.com. All rights reserved.


 

markW = 15; // 圖檔的寬

markH = 15; // 圖檔的長

markX = 95; // 螢幕上X軸的位置

markY = 95; // 螢幕上Y軸的位置

markRefresh = 20; // 每幾千分之一秒重新定位


 

// set common object reference

if (!document.all) document.all = document;

if (!document.all.waterMark.style) document.all.waterMark.style = document.all.waterMark;


 

wMark = document.all.waterMark.style;

wMark.width = markW;

wMark.height = markH;

navDOM = window.innerHeight; // Nav DOM flag


 

function setVals() {

barW = 0; // scrollbar compensation for PC Nav

barH = 0;

if (navDOM) {

if (document.height > innerHeight) barW = 20;

if (document.width > innerWidth) barH = 20;

} else {

innerWidth = document.body.clientWidth;

innerHeight = document.body.clientHeight;

}

posX = ((innerWidth - markW)-barW) * (markX/100);

posY = ((innerHeight - markH)-barH) * (markY/100);

}


 

function wRefresh() {

wMark.left = posX + (navDOM?pageXOffset:document.body.scrollLeft);

wMark.top = posY + (navDOM?pageYOffset:document.body.scrollTop);

}


 

function markMe() {

setVals();

window.onresize=setVals;

markID = setInterval ("wRefresh()",markRefresh);

}


 

window.onload=markMe; // safety for Mac IE4.5


 

//-->

</script>


 

狀態列效果

1.將語法插入在</head>之後


 

<script language="JavaScript">

var hellotext = "歡迎您來到HeHa網頁教學製作站"

var thetext = "";

var started = false;

var step = 0;

var times = 1;


 

function welcometext() {

times--;

if (!times) {

if (!started) {

started = true;

window.status = hellotext;

setTimeout("anim()", 1);

}

thetext = hellotext;

}

}


 

function anim() {

step++;

if (step==10) step = 2;

if (step==1) window.status = '●○○○○' + thetext + '○○○○●';

if (step==2) window.status = '○●○○○' + thetext + '○○○●○';

if (step==3) window.status = '○○●○○' + thetext + '○○●○○';

if (step==4) window.status = '○○○●○' + thetext + '○●○○○';

if (step==5) window.status = '○○○○●' + thetext + '●○○○○';

if (step==6) window.status = '○○○●○' + thetext + '○●○○○';

if (step==7) window.status = '○○●○○' + thetext + '○○●○○';

if (step==8) window.status = '○●○○○' + thetext + '○○○●○';

if (step==9) window.status = '●○○○○' + thetext + '○○○○●'


 

setTimeout("anim()", 200);

}


 

</script>

防止點右鍵偷圖

貼在 </HEAD> 之後


 


 

<script language="JavaScript1.1">

<!-- Begin

function right(e) {

if (navigator.appName =='Netscape'&&

(e.which ==3|| e.which ==2))

return false;

else if (navigator.appName == 'Microsoft Internet Explorer' &&

(event.button == 2|| event.button ==3)) {

alert("請尊重智慧財產權,謝謝。");

return false;

}

return true;

}

document.onmousedown=right;

if (document.layers) window.captureEvents(Event.MOUSEDOWN);

window.onmousedown=right;

//End -->

</script>

自動關閉視窗

10000代表10秒,可自行修改


 

<script LANGUAGE="JavaScript"><!-- setTimeout('window.close();', 10000); --></script>

上一頁,下一頁

上一頁

javascript:history.back();


 

下一頁

javascript:history.forward();

About Digitview

Digitview Technology Co., Ltd. was established in 2003, under integrate and inter dynamic with the customer and market for a long timing, the group of Digitview Technology finds another new opportunity of the industry of Taiwan: The market demand of digital video recorder. As science and technology changing with each passing day, the safety and security equipments have already progressed by early ' simulation ' type - VHS video tape recorder era to IT era – ` digitalization and computerization.

According to the confidence and enthusiasm of the market and products, Digitview Technology holds the spirit of ' pursue being outstanding; respect customer's need ' as our management idea. We also have the most acute sense to develop the most competitive products of the market, and offer our customers the most high-quality Omni-directional service to reach primary goal of creating customer's interests.


 

Our company is devoted to develop and produce the digital video recorder (DVR).We research and develop the new products which accord with market demand every season and has already succeeded in putting out many high functions DVR at present.


 

In addition, Digitview Technology always holds the faith that"service is above everything else". We runs specialized products education and training courses regularly to solve all problem in products for customers at any time. We always focus on what you need and look forward to servicing all our customers for years to come.

2008年2月2日 星期六

歡迎視窗

將以下的控制碼先複製起來。

然後將剛剛複製的東西在網頁中的 >body< 之中貼上就大功告成了!


>BODY onLoad="alert('歡迎您來到anny教學網!\n\n好東西要和好朋友分享!')"<


最後,更改原始碼中的歡迎內容就可以了!

那個 \n 就是強迫換行的參數