Inicio
Redacción
Articulos
Blog
Noticias
Reviews
Otros
Cine!
Foro
General
Anime
Firmas
Informatica
Software
Música, TV y Cine
Mercadito
Aplicaciones
Imágenes
Zona Arcade
Zona Callejonera
No Tienes Firma? Busca Aqui!!
Ir a página
Anterior
1
,
2
,
3
,
4
,
5
,
6
Siguiente
Índice del Foro CallejondelosJuegos.com
»
Diseño Grafico
Ver tema anterior
Ver siguiente tema
No Tienes Firma? Busca Aqui!!
Autor
Mensaje
Gerald xD
Director
Registrado: 19 Feb 2008
Mensajes: 2082
Ubicación: AD ASTRA.!
Reputación:
737.2
Votos
: 7
Medals: Ninguno
TinKy escribió:
Ferna_22 escribió:
Decime como la queres y te la hago
...
Byezzzzz
Ok ioO te DiGo
x un PRIVADO
si queres te hago una pero
mandame la imagen ok...
_________________
Lun Oct 20, 2008 10:23 pm
Gerald xD
Director
Registrado: 19 Feb 2008
Mensajes: 2082
Ubicación: AD ASTRA.!
Reputación:
737.2
Votos
: 7
Medals: Ninguno
<SCRIPT>
dCol='ffffff';//date colour.
fCol='00ffff';//face colour.
sCol='ffffff';//seconds colour.
mCol='ccff00';//minutes colour.
hCol='ffff00';//hours colour.
ClockHeight=40;
ClockWidth=40;
ClockFromMouseY=0;
ClockFromMouseX=100;
//Alter nothing below! Alignments will be lost!
d=new Array("DOMINGO","LUNES","MARTES","MIERCOLES","JUEVES","VIERNES","SABADO");
m=new Array("ENERO","FEBRERO","MARZO","ABRIL","MAYO","JUNIO","JULIO","AGOSTO","SEPTIEMBRE","OCTUBRE","NOVIEMBRE","DICIEMBRE");
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.6;
ns=(document.layers);
ie=(document.all);
Face=Face.split(' ');
n=Face.length;
a=size*10;
ymouse=0;
xmouse=0;
scrll=0;
props="<font>
";
props2="<font>
";
Split=360/n;
Dsplit=360/D.length;
HandHeight=ClockHeight/4.5
HandWidth=ClockWidth/4.5
HandY=-7;
HandX=-2.5;
scrll=0;
step=0.06;
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><center>'+props2+D[i]+'</font></center></layer>');
for (i=0; i < n; i++)
document.write('<layer><center>'+props+Face[i]+'</font></center></layer>');
for (i=0; i < S.length; i++)
document.write('<layer><font><center>
'+S[i]+'
</center></font></layer>');
for (i=0; i < M.length; i++)
document.write('<layer><font><center>
'+M[i]+'
</center></font></layer>');
for (i=0; i < H.length; i++)
document.write('<layer><font><center>
'+H[i]+'
</center></font></layer>');
}
if (ie){
document.write('<div><div>');
for (i=0; i < D.length; i++)
document.write('<div>'+props2+D[i]+'
</font></div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < n; i++)
document.write('<div>'+props+Face[i]+'
</font></div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < H.length; i++)
document.write('<div>'+H[i]+'</div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < M.length; i++)
document.write('<div>'+M[i]+'</div>');
document.write('</div></div>')
document.write('<div><div>');
for (i=0; i < S.length; i++)
document.write('<div>'+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>
_________________
Lun Oct 20, 2008 10:24 pm
Ferna_22
Callejonero Full
Registrado: 24 Dic 2007
Mensajes: 3649
Ubicación: San Justo, Buenos Aires, Argentina.
Reputación:
1116.1
Votos
: 31
Medals: Ninguno
Spoiler:
LoRd Of DaRkNeSs escribió:
<SCRIPT>
dCol='ffffff';//date colour.
fCol='00ffff';//face colour.
sCol='ffffff';//seconds colour.
mCol='ccff00';//minutes colour.
hCol='ffff00';//hours colour.
ClockHeight=40;
ClockWidth=40;
ClockFromMouseY=0;
ClockFromMouseX=100;
//Alter nothing below! Alignments will be lost!
d=new Array("DOMINGO","LUNES","MARTES","MIERCOLES","JUEVES","VIERNES","SABADO");
m=new Array("ENERO","FEBRERO","MARZO","ABRIL","MAYO","JUNIO","JULIO","AGOSTO","SEPTIEMBRE","OCTUBRE","NOVIEMBRE","DICIEMBRE");
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.6;
ns=(document.layers);
ie=(document.all);
Face=Face.split(' ');
n=Face.length;
a=size*10;
ymouse=0;
xmouse=0;
scrll=0;
props="<font>
";
props2="<font>
";
Split=360/n;
Dsplit=360/D.length;
HandHeight=ClockHeight/4.5
HandWidth=ClockWidth/4.5
HandY=-7;
HandX=-2.5;
scrll=0;
step=0.06;
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><center>'+props2+D[i]+'</font></center></layer>');
for (i=0; i < n; i++)
document.write('<layer><center>'+props+Face[i]+'</font></center></layer>');
for (i=0; i < S.length; i++)
document.write('<layer><font><center>
'+S[i]+'
</center></font></layer>');
for (i=0; i < M.length; i++)
document.write('<layer><font><center>
'+M[i]+'
</center></font></layer>');
for (i=0; i < H.length; i++)
document.write('<layer><font><center>
'+H[i]+'
</center></font></layer>');
}
if (ie){
document.write('<div><div>');
for (i=0; i < D.length; i++)
document.write('<div>'+props2+D[i]+'
</font></div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < n; i++)
document.write('<div>'+props+Face[i]+'
</font></div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < H.length; i++)
document.write('<div>'+H[i]+'</div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < M.length; i++)
document.write('<div>'+M[i]+'</div>');
document.write('</div></div>')
document.write('<div><div>');
for (i=0; i < S.length; i++)
document.write('<div>'+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>
Hey LoRd Of DaRkNeSs, que es eso?...
Cejota escribió:
Hey mara agradeceria si alguien me puede hacer otra firma...!!! hey ferna 22 me podrias ayudar ahi amigo????
Si, decime como la queres
...
Byezzzzz
_________________
Ultima edición por Ferna_22 el Mar Oct 21, 2008 9:50 am; editado 1 vez
Mar Oct 21, 2008 9:46 am
Gerald xD
Director
Registrado: 19 Feb 2008
Mensajes: 2082
Ubicación: AD ASTRA.!
Reputación:
737.2
Votos
: 7
Medals: Ninguno
mira viejo necesito una firma
de mario con mi nickname vs sabes
y ponele plante la imagen seria la
que tengo de firma ok...y grax
_________________
Mar Oct 21, 2008 3:26 pm
MacproDe
Callejonero Full
Registrado: 22 Oct 2008
Mensajes: 1729
Ubicación: San Jacinto, San Salvador
Reputación:
2890.3
Votos
: 24
Medals: Ninguno
hey estan vien originales
nn
Agregado hace 13 minutos:
nn hey ferna 22 crees que podes poner mi nombre LIU KANG en la firma de naturo porfa
<a><img></a>
Dom Nov 09, 2008 1:22 pm
indiglosv
Callejonero Full
Registrado: 17 Sep 2008
Mensajes: 1702
Ubicación: En algun lugar de un gran pais
Reputación:
3139.5
Votos
: 28
Medals: Ninguno
LoRd Of DaRkNeSs escribió:
Spoiler:
<SCRIPT>
dCol='ffffff';//date colour.
fCol='00ffff';//face colour.
sCol='ffffff';//seconds colour.
mCol='ccff00';//minutes colour.
hCol='ffff00';//hours colour.
ClockHeight=40;
ClockWidth=40;
ClockFromMouseY=0;
ClockFromMouseX=100;
//Alter nothing below! Alignments will be lost!
d=new Array("DOMINGO","LUNES","MARTES","MIERCOLES","JUEVES","VIERNES","SABADO");
m=new Array("ENERO","FEBRERO","MARZO","ABRIL","MAYO","JUNIO","JULIO","AGOSTO","SEPTIEMBRE","OCTUBRE","NOVIEMBRE","DICIEMBRE");
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.6;
ns=(document.layers);
ie=(document.all);
Face=Face.split(' ');
n=Face.length;
a=size*10;
ymouse=0;
xmouse=0;
scrll=0;
props="<font>
";
props2="<font>
";
Split=360/n;
Dsplit=360/D.length;
HandHeight=ClockHeight/4.5
HandWidth=ClockWidth/4.5
HandY=-7;
HandX=-2.5;
scrll=0;
step=0.06;
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><center>'+props2+D[i]+'</font></center></layer>');
for (i=0; i < n; i++)
document.write('<layer><center>'+props+Face[i]+'</font></center></layer>');
for (i=0; i < S.length; i++)
document.write('<layer><font><center>
'+S[i]+'
</center></font></layer>');
for (i=0; i < M.length; i++)
document.write('<layer><font><center>
'+M[i]+'
</center></font></layer>');
for (i=0; i < H.length; i++)
document.write('<layer><font><center>
'+H[i]+'
</center></font></layer>');
}
if (ie){
document.write('<div><div>');
for (i=0; i < D.length; i++)
document.write('<div>'+props2+D[i]+'
</font></div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < n; i++)
document.write('<div>'+props+Face[i]+'
</font></div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < H.length; i++)
document.write('<div>'+H[i]+'</div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < M.length; i++)
document.write('<div>'+M[i]+'</div>');
document.write('</div></div>')
document.write('<div><div>');
for (i=0; i < S.length; i++)
document.write('<div>'+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>
Hey para que es ese script ???? que hace?
_________________
Dom Nov 09, 2008 1:40 pm
MacproDe
Callejonero Full
Registrado: 22 Oct 2008
Mensajes: 1729
Ubicación: San Jacinto, San Salvador
Reputación:
2890.3
Votos
: 24
Medals: Ninguno
nn
Agregado hace 2 minutos:
nn [flash width=250 height=250]http://i184.photobucket.com/albums/x106/kina_1988_/firma_zelda.jpg [/flash] nn
Agregado hace 24 segundos:
nn h
[flash width=250 height=250]http://i184.photobucket.com/albums/x106/kina_1988_/firma_zelda.jpg [/flash]
Dom Nov 09, 2008 1:49 pm
Gerald xD
Director
Registrado: 19 Feb 2008
Mensajes: 2082
Ubicación: AD ASTRA.!
Reputación:
737.2
Votos
: 7
Medals: Ninguno
Ferna_22 escribió:
Spoiler:
LoRd Of DaRkNeSs escribió:
<SCRIPT>
dCol='ffffff';//date colour.
fCol='00ffff';//face colour.
sCol='ffffff';//seconds colour.
mCol='ccff00';//minutes colour.
hCol='ffff00';//hours colour.
ClockHeight=40;
ClockWidth=40;
ClockFromMouseY=0;
ClockFromMouseX=100;
//Alter nothing below! Alignments will be lost!
d=new Array("DOMINGO","LUNES","MARTES","MIERCOLES","JUEVES","VIERNES","SABADO");
m=new Array("ENERO","FEBRERO","MARZO","ABRIL","MAYO","JUNIO","JULIO","AGOSTO","SEPTIEMBRE","OCTUBRE","NOVIEMBRE","DICIEMBRE");
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.6;
ns=(document.layers);
ie=(document.all);
Face=Face.split(' ');
n=Face.length;
a=size*10;
ymouse=0;
xmouse=0;
scrll=0;
props="<font>
";
props2="<font>
";
Split=360/n;
Dsplit=360/D.length;
HandHeight=ClockHeight/4.5
HandWidth=ClockWidth/4.5
HandY=-7;
HandX=-2.5;
scrll=0;
step=0.06;
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><center>'+props2+D[i]+'</font></center></layer>');
for (i=0; i < n; i++)
document.write('<layer><center>'+props+Face[i]+'</font></center></layer>');
for (i=0; i < S.length; i++)
document.write('<layer><font><center>
'+S[i]+'
</center></font></layer>');
for (i=0; i < M.length; i++)
document.write('<layer><font><center>
'+M[i]+'
</center></font></layer>');
for (i=0; i < H.length; i++)
document.write('<layer><font><center>
'+H[i]+'
</center></font></layer>');
}
if (ie){
document.write('<div><div>');
for (i=0; i < D.length; i++)
document.write('<div>'+props2+D[i]+'
</font></div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < n; i++)
document.write('<div>'+props+Face[i]+'
</font></div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < H.length; i++)
document.write('<div>'+H[i]+'</div>');
document.write('</div></div>');
document.write('<div><div>');
for (i=0; i < M.length; i++)
document.write('<div>'+M[i]+'</div>');
document.write('</div></div>')
document.write('<div><div>');
for (i=0; i < S.length; i++)
document.write('<div>'+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>
Hey LoRd Of DaRkNeSs, que es eso?...
Cejota escribió:
Hey mara agradeceria si alguien me puede hacer otra firma...!!! hey ferna 22 me podrias ayudar ahi amigo????
Si, decime como la queres
...
Byezzzzz
ha mira es un
reloj en JavaScript solo que por
fregar lo puse para ver a quien
le interesaba pero si lo podes probar
ponelo por que si da plante...
_________________
Dom Nov 09, 2008 6:13 pm
ED359FOX
Experto
Registrado: 01 Dic 2008
Mensajes: 428
Reputación:
199.1
Votos
: 1
Medals: Ninguno
" />
HEY ESTAN BIEN VERGONAS
_________________
EVITAR NO ES COBARDIA SI NO INTELIGENCIA
Sab Dic 27, 2008 12:48 pm
skipy
Principiante
Registrado: 21 Oct 2008
Mensajes: 71
Ubicación: san salvador
Wii Code: 8337308521504563
Reputación:
74.2
Votos
: 1
Medals: Ninguno
hey estan buenas las firmas estas
Vie Feb 27, 2009 6:18 pm
Mostrar mensajes anteriores:
Todos los mensajes
1 Día
7 Días
2 Semanas
1 Mes
3 Meses
6 Meses
1 Año
El más antiguo primero
El más reciente primero
Índice del Foro CallejondelosJuegos.com
»
Diseño Grafico
Todas las horas están en GMT - 6 Horas
Ir a página
Anterior
1
,
2
,
3
,
4
,
5
,
6
Siguiente
Página
5
de
6
Saltar a:
Seleccione un foro
Callejon de los Juegos
----------------
Novedades y Sugerencias
-- Presentaciones
Web Site Team
Lang Con
-- Edicion PlayStation 09
-- I Edicion Online 2010
Arroba de Oro 2010
General Juegos
-- Discusiones Oficiales
El Mercadito
-- The Madhouse
-- Mejores Precios
Papelera de Reciclaje
-- Call Of Duty 4
-- Locutores
-- SVForce TeaM
-- Games Con 08
-- Eventos y Fotos
-- Campaña contra la trata de Personas (jovenes y mujeres)
-- Arroba de Oro 2008
-- Game Zone
-- Play Zone
-- Mii: Planet Games
Clanes / Servidores
----------------
Clan HFxS
Pc
----------------
Juegos en linea
-- Imperio Online
-- Knight Online World
-- Legend Of Mir Atomic Server
Juegos PC
-- Codigos y Trucos
Nintendo
----------------
WII
-- Trucos
-- Consola Virtual
-- WiiWare
Game Cube
Nintendo DS
Clan Nintenders
Nintendo 3DS
Sony
----------------
PS3
-- Trucos PS3
PS2
-- Trucos
PSP
-- Team PSP
Sonyers Clan
Microsoft
----------------
Xbox360
-- Trucos
Xbox
Otros
----------------
Emuladores y juegos retro
Zona Pokemon
Tecnologia
----------------
Software
Informatica
Estructuras 3D
Zona Celulares
Offtopic
----------------
General con un poco de jodarria!
-- Comics
-- Deportes
Musica, TV y Cine
Anime
Diseño Grafico
Cultura Salvadoreña
Tareas, trabajos, ensayos y mas
No puede
crear mensajes
No puede
responder temas
No puede
editar sus mensajes
No puede
borrar sus mensajes
No puede
votar en encuestas