View Full Version : I Really Need Help!!!


ryancel
08-01-2003, 09:38 AM
can someone help me...i really want to know the code to do this......http://www.xanga.com/home.aspx?user=LiLsKyNeEgYrL it like opens the window hella tyte and i really want to know how to do it....when it like comes from the left and opens up to fill up the screen...PLEASE i really need help

pb&j
08-01-2003, 03:11 PM
i am amazed that webpage actually functions. it has multiple errors as well as being inundated with scripts.

i think you should try using the "contact us" link at the bottom of that page itself to find out which exact script does the effect you are looking for.

other than that, welcome to the lissa forums & remember to use a good description for your posting subjects.

Chris
08-01-2003, 03:55 PM
simply put the following code in the body section of your html code:

<script>
height=0
width=0
speed=40

function Blind()
{

if(width<screen.availWidth)
{
if(height<screen.availHeight)
{
self.resizeTo(width,height)
height=height+speed
timeoutID=setTimeout("Blind()",0);
}
else
{
self.resizeTo(width,screen.availHeight)
width=width+speed
timeoutID=setTimeout("Blind()",0);
}

}

else
{
self.resizeTo(screen.availWidth,screen.availHeight )
}

}
self.moveTo(0,0);
Blind()
</script>

Saphiregemm
08-02-2003, 07:21 AM
thax that code worked!

ryancel
08-06-2003, 10:36 PM
Thank you a lot