el javascript de la p�ginita
Lo cual me recuerda que ayer sub� un tuto sobre como hacer este efecto de la
pantalla temblando

<SCRIPT language=javascript>

function moveleft(){
parent.moveBy(-3,0)
}
function moveleft1(){
parent.moveBy(-1,0)
}
function moveleft2(){
parent.moveBy(-4,0)
}
function moveleft3(){
for (x=7;x>=0;x--)
{
parent.moveBy(-x,0)
}
}


function moveup(){
for (x=6;x>=0;x--)
{
parent.moveBy(0,-x)
}
}
function moveup1(){
for (x=5;x>=0;x--)
{
parent.moveBy(-3,-x)
}
}


function movedown(){
parent.moveBy(0,3)
}
function movedown2(){
for (x=6;x>=0;x--)
{
parent.moveBy(0,x)
}
}
function movedown3(){
for (x=8;x>=0;x--)
{
parent.moveBy(0,x)
}
}
function movedown4(){
for (x=8;x>=0;x--)
{
parent.moveBy(5,x)
}
}
function movedown5(){
parent.moveBy(0,1)
}


function moveright(){
for (x=9;x>=0;x--)
{
parent.moveBy(x,0)
}
}
function moveright1(){
parent.moveBy(1,0)
}
function moveright2(){
parent.moveBy(3,0)
}
function moveright3(){
for (x=3;x>=0;x--)
{
parent.moveBy(x,0)
}
}

</SCRIPT>


Responder a