.:.:.:MundOGniaL:.:.:.
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

PopUp, Efectos HTML, ect

Ir abajo

PopUp, Efectos HTML, ect Empty PopUp, Efectos HTML, ect

Mensaje  .=Emilio=. Vie Jun 13, 2008 4:42 am

Popup Lateral, ventana que se abre desde la izquierda hacia la derecha, ocupando toda la pantalla. Ventana lateral, Popup con movimiento.

<body>
<script language="JavaScript" type="text/JavaScript">
function expandingWindow(website) {
var heightspeed = 2; // vertical scrolling speed (higher = slower)
var widthspeed = 7; // horizontal scrolling speed (higher = slower)
var leftdist = 0; // distance to left edge of window
var topdist = 0; // distance to top edge of window
if (document.all) {
var winwidth = window.screen.availWidth - leftdist;
var winheight = window.screen.availHeight - topdist;
var sizer = window.open("","","left=" + leftdist + ",top=" + topdist +
",width=1,height=1,scrollbars=yes");
for (sizeheight = 1; sizeheight <winheight; sizeheight += heightspeed) {
sizer.resizeTo("1", sizeheight);
}
for (sizewidth = 1; sizewidth <winwidth; sizewidth += widthspeed) {
sizer.resizeTo(sizewidth, sizeheight);
}
sizer.location = website;
}
else
window.location = website;
}
</script>
<p><a href="ejemploventana.htm" alt="se expande" onclick="expandingWindow('ejemploventana.htm');return false;">Click
aquí para ver el efecto</a>
<body>



Alerta Que Aparece Al Cargar la Pagina:

<body>
<script language="JavaScript">
alert("Tu Texto");
</script>
</body>

Pregunta si quieres entrar o prefieres volver a la página anterior, te dá 2 opciones, ACEPTAR o CANCELAR. Alerta al entrar





Codigo:

</body>
<script language="JavaScript" type="text/JavaScript">
<!--
function checkAGE()
{
if (!confirm
("Desea entrar a esta página, presione Aceptar, si no presione Cancelar"))
history.go(-1);return " "}
document.writeln(checkAGE())
// -->
</script>
</body>

punteros:


Letras al puntero con javascript, palabras que siguen al puntero. letras tras el puntero. Puedes modificar la fuente, color y tamaño de la fuente. Puntero del mouse con javascript.

[body]
<script language="JavaScript1.2" type="text/JavaScript1.2">
<!--
/*
Cursor Trailer II (By Kurt at kurt.grigg@virgin.net)
Modified and featured on Dynamicdrive.com
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/
var message='ejemplo..';
var messagecolor='#ff0000'
//Enter number of seconds for message to display (0=perpetual)
var dismissafter=0
///no need to edit below/////////
var amount=5,ypos=0,xpos=0,Ay=0,Ax=0,By=0,Bx=0,Cy=0,Cx=0,Dy=0,Dx=0,Ey=0,Ex=0;
if (document.layers){
for (i = 0; i < amount; i++)
{document.write('<layer name=ns'+i+' top=0 left=0><font face="Arial" size=3 color='+messagecolor+'>'+message+'</font></layer>')}
window.captureEvents(Event.MOUSEMOVE);
function nsmouse(evnt){xpos = evnt.pageX;ypos = evnt.pageY;makefollow()}
}
else if (document.all){
document.write("<div id='outer' style='position:absolute;top:0px;left:0px'>");
document.write("<div id='inner' style='position:relative'>");
for (i = 0; i < amount; i++)
{document.write('<div id="text"'+i+' style="position:absolute;top:0px;left:0px;font-family:Courier New;font-size:16px;color:'+messagecolor+'">'+message+'</div>')}
document.write("</div>");
document.write("</div>");
function iemouse(){ypos = document.body.scrollTop + event.y;xpos = document.body.scrollLeft + event.x;makefollow()}
}
function makefollow(){
if (document.layers){
document.layers["ns0"].top=ay;document.layers["ns0"].left=ax;
document.layers["ns1"].top=by;document.layers["ns1"].left=bx;
document.layers["ns2"].top=cy;document.layers["ns2"].left=cx;
document.layers["ns3"].top=Dy;document.layers["ns3"].left=Dx;
document.layers["ns4"].top=Ey;document.layers["ns4"].left=Ex;
}
else if (document.all){
outer.all.inner.all[0].style.pixelTop=ay;outer.all.inner.all[0].style.pixelLeft=ax;
outer.all.inner.all[1].style.pixelTop=by;outer.all.inner.all[1].style.pixelLeft=bx;
outer.all.inner.all[2].style.pixelTop=cy;outer.all.inner.all[2].style.pixelLeft=cx;
outer.all.inner.all[3].style.pixelTop=Dy;outer.all.inner.all[3].style.pixelLeft=Dx;
outer.all.inner.all[4].style.pixelTop=Ey;outer.all.inner.all[4].style.pixelLeft=Ex;
}
}
function move(){
if (dismissafter!=0)
setTimeout("hidetrail()",dismissafter*1000)
if (document.layers){window.onMouseMove = nsmouse}
else if (document.all){window.document.onmousemove = iemouse}
ey = Math.round(Ey+=((ypos+20)-Ey)*2/2);ex = Math.round(Ex+=((xpos+20)-Ex)*2/2);
dy = Math.round(Dy+=(ey - Dy)*2/4);dx = Math.round(Dx+=(ex - Dx)*2/4);
cy = Math.round(Cy+=(dy - Cy)*2/6);cx = Math.round(Cx+=(dx - Cx)*2/6);
by = Math.round(By+=(cy - By)*2/Cool;bx = Math.round(Bx+=(cx - Bx)*2/Cool;
ay = Math.round(Ay+= (by - Ay)*2/10);ax = Math.round(Ax+= (bx - Ax)*2/10);
makefollow();
jumpstart=setTimeout('move()',10);
}
function hidetrail(){
if (document.all){
for (i2=0;i2<amount;i2++){
outer.all.inner.all[i2].style.visibility="hidden"
clearTimeout(jumpstart)
}
}
else if (document.layers){
for (i2=0;i2<amount;i2++){
temp="ns"+i2
document.layers[temp].visibility="hide"
clearTimeout(jumpstart)
}
}
}
window.onload=move;
//-->
</script>
[/body]
.=Emilio=.
.=Emilio=.
Moderador
Moderador

Masculino
Cantidad de envíos : 65
Edad : 29
Vivo en : Venezuela
Pops : 293
Banómetro :
PopUp, Efectos HTML, ect Left_bar_bleue0 / 1000 / 100PopUp, Efectos HTML, ect Right_bar_bleue

plaquillas : PopUp, Efectos HTML, ect Ovnixun1PopUp, Efectos HTML, ect Fantasmaxig1PopUp, Efectos HTML, ect Nickazulxzq4
Fecha de inscripción : 08/06/2008

Volver arriba Ir abajo

Volver arriba

- Temas similares

 
Permisos de este foro:
No puedes responder a temas en este foro.