Itt különböző órákat tölthetsz fel az oldaladra!
Ennyit kell tenned:A scriptet kimásolod,beilleszted a lapod kódjába,ÉS KÉSZ!
Rainbow óra:
<BR><!-- ONE STEP TO INSTALL RAINBOW CLOCK:</P> <P> </P> <P> 1. Copy the coding into the HEAD of your HTML document --></P> <P> </P> <P><!-- STEP ONE: Paste this code into the HEAD of your HTML document --></P> <P> </P> <P></P> <P> </P> <P><!-- This script and many more are available free online at --></P> <P><!-- The JavaScript Source!! <A href="http://javascript.internet.com">http://javascript.internet.com</A> --></P> <P><!-- Original: Alexander Babichev --></P> <P><!-- Web Site: <A href="http://www.fortochka.com/JavaScript/DigitalClock/DigitalClock.htm">http://www.fortochka.com/JavaScript/DigitalClock/DigitalClock.htm</A> --></P> <P> <SCRIPT language=JavaScript1.2 src="clock.js"></SCRIPT> </P> <P> </P> <P> </P> <P> <P> <CENTER> <P></P> <P><FONT face="arial, helvetica" size?-2?>Free JavaScripts provided<BR></P> <P>by <A href="<A href='http://javascriptsource.com">The'>http://javascriptsource.com">The</A> JavaScript Source</A></FONT></P> <P></CENTER> <P></P> <P> </P> <P><!-- Script Size: 0.58 KB --></P>
Kicsi bár óra:
<BR><!-- THREE STEPS TO INSTALL TITLE BAR CLOCK:</P> <P> 1. Copy the coding into the HEAD of your HTML document<BR> 2. Add the onLoad event handler into the BODY tag<BR> 3. Put the last coding into the BODY of your HTML document --></P> <P><!-- STEP ONE: Paste this code into the HEAD of your HTML document --></P> <P></P> <P> <SCRIPT language=JavaScript><BR><!-- This script and many more are available free online at --><BR><!-- The JavaScript Source!! <A href="http://javascript.internet.com">http://javascript.internet.com</A> --><BR><!-- Original: Alex Jarvis (<A href="mailto:gamemastax@hotmail.com">gamemastax@hotmail.com</A> ) --><BR><!-- Begin<BR>function clock() {<BR>var date = new Date()<BR>var year = date.getYear()<BR>var month = date.getMonth()<BR>var day = date.getDate()<BR>var hour = date.getHours()<BR>var minute = date.getMinutes()<BR>var second = date.getSeconds()<BR>var months = new Array("", "JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC")</P> <P>var monthname = months[month]</P> <P>if (hour > 12) {<BR>hour = hour - 12<BR>}</P> <P>if (minute < 10) {<BR>minute = "0" + minute<BR>}</P> <P>if (second < 10) {<BR>second = "0" + second<BR>}</P> <P><BR>document.title = "JSS - " + monthname + " " + day + ", " + year + " - " + hour + ":" + minute + ":" + second</P> <P>setTimeout("clock()", 1000)</P> <P>}<BR>// End --><BR></SCRIPT> </P> <P></P> <P><!-- STEP TWO: Insert the onLoad event handler into your BODY tag --></P> <P></P> <P><!-- STEP THREE: Copy this code into the BODY of your HTML document --></P> <P>The script is running in the title bar!!</P> <P> <P> <CENTER><BR><FONT face="arial, helvetica" size?-2?>Free JavaScripts provided<BR><BR>by <A href="<A href='http://javascriptsource.com">The'>http://javascriptsource.com">The</A> JavaScript Source</A></FONT><BR></CENTER> <P></P> <P><!-- Script Size: 1.53 KB --></P>
Egér követő óra:
<BR><!-- ONE STEP TO INSTALL MOUSE TRAIL CLOCK:</P> <P> </P> <P> 1. Copy the coding into the BODY of your HTML document --></P> <P> </P> <P><!-- STEP ONE: Paste this code into the BODY of your HTML document --></P> <P> </P> <P></P> <P> </P> <P><!-- This script and many more are available free online at --></P> <P><!-- The JavaScript Source!! <A href="http://javascript.internet.com">http://javascript.internet.com</A> --></P> <P><!-- Original: Amy Cook (<A href="mailto:ncgoddess@msn.com">ncgoddess@msn.com</A> ) --></P> <P><!-- Web Site: <A href="http://ncgoddess.com/script.html">http://ncgoddess.com/script.html</A> --></P> <P> <SCRIPT language=JavaScript></P> <P>dCol='000000';//date colour.</P> <P>fCol='000000';//face colour.</P> <P>sCol='000000';//seconds colour.</P> <P>mCol='000000';//minutes colour.</P> <P>hCol='000000';//hours colour.</P> <P>ClockHeight=40;</P> <P>ClockWidth=40;</P> <P>ClockFromMouseY=0;</P> <P>ClockFromMouseX=100;</P> <P> </P> <P>//Alter nothing below! Alignments will be lost!</P> <P> </P> <P>d=new Array("SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY");</P> <P>m=new Array("JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER");</P> <P>date=new Date();</P> <P>day=date.getDate();</P> <P>year=date.getYear();</P> <P>if (year < 2000) year=year+1900;</P> <P>TodaysDate=" "+d[date.getDay()]+" "+day+" "+m[date.getMonth()]+" "+year;</P> <P>D=TodaysDate.split('');</P> <P>H='...';</P> <P>H=H.split('');</P> <P>M='....';</P> <P>M=M.split('');</P> <P>S='.....';</P> <P>S=S.split('');</P> <P>Face='1 2 3 4 5 6 7 8 9 10 11 12';</P> <P>font='Arial';</P> <P>size=1;</P> <P>speed=0.6;</P> <P>ns=(document.layers);</P> <P>ie=(document.all);</P> <P>Face=Face.split(' ');</P> <P>n=Face.length;</P> <P>a=size*10;</P> <P>ymouse=0;</P> <P>xmouse=0;</P> <P>scrll=0;</P> <P>props="<font face="+font+" size="+size+" color="+fCol+"><B>";</P> <P>props2="<font face="+font+" size="+size+" color="+dCol+"><B>";</P> <P>Split=360/n;</P> <P>Dsplit=360/D.length;</P> <P>HandHeight=ClockHeight/4.5</P> <P>HandWidth=ClockWidth/4.5</P> <P>HandY=-7;</P> <P>HandX=-2.5;</P> <P>scrll=0;</P> <P>step=0.06;</P> <P>currStep=0;</P> <P>y=new Array();x=new Array();Y=new Array();X=new Array();</P> <P>for (i=0; i < n; i++){y[i]=0;x[i]=0;Y[i]=0;X[i]=0}</P> <P>Dy=new Array();Dx=new Array();DY=new Array();DX=new Array();</P> <P>for (i=0; i < D.length; i++){Dy[i]=0;Dx[i]=0;DY[i]=0;DX[i]=0}</P> <P>if (ns){</P> <P>for (i=0; i < D.length; i++)</P> <P>document.write('<layer name="nsDate'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props2+D[i]+'</font></center></layer>');</P> <P>for (i=0; i < n; i++)</P> <P>document.write('<layer name="nsFace'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+Face[i]+'</font></center></layer>');</P> <P>for (i=0; i < S.length; i++)</P> <P>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>');</P> <P>for (i=0; i < M.length; i++)</P> <P>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>');</P> <P>for (i=0; i < H.length; i++)</P> <P>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>');</P> <P>}</P> <P>if (ie){</P> <P>document.write('<div id="Od" style="position:absolute;top:0px;left:0px"><div style="position:relative">');</P> <P>for (i=0; i < D.length; i++)</P> <P>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>');</P> <P>document.write('</div></div>');</P> <P>document.write('<div id="Of" style="position:absolute;top:0px;left:0px"><div style="position:relative">');</P> <P>for (i=0; i < n; i++)</P> <P>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>');</P> <P>document.write('</div></div>');</P> <P>document.write('<div id="Oh" style="position:absolute;top:0px;left:0px"><div style="position:relative">');</P> <P>for (i=0; i < H.length; i++)</P> <P>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>');</P> <P>document.write('</div></div>');</P> <P>document.write('<div id="Om" style="position:absolute;top:0px;left:0px"><div style="position:relative">');</P> <P>for (i=0; i < M.length; i++)</P> <P>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>');</P> <P>document.write('</div></div>')</P> <P>document.write('<div id="Os" style="position:absolute;top:0px;left:0px"><div style="position:relative">');</P> <P>for (i=0; i < S.length; i++)</P> <P>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>');</P> <P>document.write('</div></div>')</P> <P>}</P> <P>(ns)?window.captureEvents(Event.MOUSEMOVE):0;</P> <P>function Mouse(evnt){</P> <P>ymouse = (ns)?evnt.pageY+ClockFromMouseY-(window.pageYOffset):event.y+ClockFromMouseY;</P> <P>xmouse = (ns)?evnt.pageX+ClockFromMouseX:event.x+ClockFromMouseX;</P> <P>}</P> <P>(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;</P> <P>function ClockAndAssign(){</P> <P>time = new Date ();</P> <P>secs = time.getSeconds();</P> <P>sec = -1.57 + Math.PI * secs/30;</P> <P>mins = time.getMinutes();</P> <P>min = -1.57 + Math.PI * mins/30;</P> <P>hr = time.getHours();</P> <P>hrs = -1.575 + Math.PI * hr/6+Math.PI*parseInt(time.getMinutes())/360;</P> <P>if (ie){</P> <P>Od.style.top=window.document.body.scrollTop;</P> <P>Of.style.top=window.document.body.scrollTop;</P> <P>Oh.style.top=window.document.body.scrollTop;</P> <P>Om.style.top=window.document.body.scrollTop;</P> <P>Os.style.top=window.document.body.scrollTop;</P> <P>}</P> <P>for (i=0; i < n; i++){</P> <P> var F=(ns)?document.layers['nsFace'+i]:ieFace[i].style;</P> <P> F.top=y[i] + ClockHeight*Math.sin(-1.0471 + i*Split*Math.PI/180)+scrll;</P> <P> F.left=x[i] + ClockWidth*Math.cos(-1.0471 + i*Split*Math.PI/180);</P> <P> }</P> <P>for (i=0; i < H.length; i++){</P> <P> var HL=(ns)?document.layers['nsHours'+i]:ieHours[i].style;</P> <P> HL.top=y[i]+HandY+(i*HandHeight)*Math.sin(hrs)+scrll;</P> <P> HL.left=x[i]+HandX+(i*HandWidth)*Math.cos(hrs);</P> <P> }</P> <P>for (i=0; i < M.length; i++){</P> <P> var ML=(ns)?document.layers['nsMinutes'+i]:ieMinutes[i].style;</P> <P> ML.top=y[i]+HandY+(i*HandHeight)*Math.sin(min)+scrll;</P> <P> ML.left=x[i]+HandX+(i*HandWidth)*Math.cos(min);</P> <P> }</P> <P>for (i=0; i < S.length; i++){</P> <P> var SL=(ns)?document.layers['nsSeconds'+i]:ieSeconds[i].style;</P> <P> SL.top=y[i]+HandY+(i*HandHeight)*Math.sin(sec)+scrll;</P> <P> SL.left=x[i]+HandX+(i*HandWidth)*Math.cos(sec);</P> <P> }</P> <P>for (i=0; i < D.length; i++){</P> <P> var DL=(ns)?document.layers['nsDate'+i]:ieDate[i].style;</P> <P> DL.top=Dy[i] + ClockHeight*1.5*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;</P> <P> DL.left=Dx[i] + ClockWidth*1.5*Math.cos(currStep+i*Dsplit*Math.PI/180);</P> <P> }</P> <P>currStep-=step;</P> <P>}</P> <P>function Delay(){</P> <P>scrll=(ns)?window.pageYOffset:0;</P> <P>Dy[0]=Math.round(DY[0]+=((ymouse)-DY[0])*speed);</P> <P>Dx[0]=Math.round(DX[0]+=((xmouse)-DX[0])*speed);</P> <P>for (i=1; i < D.length; i++){</P> <P>Dy[i]=Math.round(DY[i]+=(Dy[i-1]-DY[i])*speed);</P> <P>Dx[i]=Math.round(DX[i]+=(Dx[i-1]-DX[i])*speed);</P> <P>}</P> <P>y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);</P> <P>x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);</P> <P>for (i=1; i < n; i++){</P> <P>y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);</P> <P>x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);</P> <P>}</P> <P>ClockAndAssign();</P> <P>setTimeout('Delay()',20);</P> <P>}</P> <P>if (ns||ie)window.onload=Delay;</P> <P></SCRIPT> </P> <P> </P> <P> </P> <P> <P> <CENTER> <P></P> <P><FONT face="arial, helvetica" size?-2?>Free JavaScripts provided<BR></P> <P>by <A href="<A href='http://javascriptsource.com">The'>http://javascriptsource.com">The</A> JavaScript Source</A></FONT></P> <P></CENTER> <P></P> <P> </P> <P><!-- Script Size: 7.48 KB --></P> <P>Angol óra:</P> <P><BR><!-- TWO STEPS TO INSTALL ENGLISH DATE:</P> <P> 1. Copy the coding into the HEAD of your HTML document<BR> 2. Add the last code into the BODY of your HTML document --></P> <P><!-- STEP ONE: Paste this code into the HEAD of your HTML document --></P> <P></P> <P> <SCRIPT language=JavaScript></P> <P><!-- This script and many more are available free online at --><BR><!-- The JavaScript Source!! <A href="http://javascript.internet.com">http://javascript.internet.com</A> --></P> <P><!-- Begin<BR>dayName = new Array("", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday")<BR>monName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")<BR>now = new Date<BR>// End --><BR></SCRIPT> </P> <P></P> <P><!-- STEP TWO: Copy this code into the BODY of your HTML document --></P> <P></P> <P> <SCRIPT language=JavaScript></P> <P><!-- This script and many more are available free online at --><BR><!-- The JavaScript Source!! <A href="http://javascript.internet.com">http://javascript.internet.com</A> --></P> <P><!-- Begin<BR>var strDay;<BR>if ((now.getDate() == 1) || (now.getDate() != 11) && (now.getDate() % 10 == 1)) // Correction for 11th and 1st/21st/31st<BR> strDay = "st ";<BR>else if ((now.getDate() == 2) || (now.getDate() != 12) && (now.getDate() % 10 == 2)) // Correction for 12th and 2nd/22nd/32nd<BR> strDay = "nd ";<BR>else if ((now.getDate() == 3) || (now.getDate() != 13) && (now.getDate() % 10 == 3)) // Correction for 13th and 3rd/23rd/33rd<BR> strDay = "rd ";<BR>else<BR> strDay = "th ";<BR>document.write(<BR>dayName[now.getDay()]<BR>+<BR>" the "<BR>+<BR>now.getDate()<BR>+<BR>strDay<BR>+<BR>"of "<BR>+<BR>monName[now.getMonth()]<BR>+<BR>", "<BR>+<BR>now.getFullYear()<BR>)<BR>// End --><BR></SCRIPT> </P> <P><BR> <P> <CENTER><BR><FONT face="arial, helvetica" size?-2?>Free JavaScripts provided<BR><BR>by <A href="<A href='http://javascriptsource.com">The'>http://javascriptsource.com">The</A> JavaScript Source</A></FONT><BR></CENTER> <P></P> <P><!-- Script Size: 1.73 KB --></P>