Jump to content

watch your browser move.


Recommended Posts


Posted

Its just java script:

<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>

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...