Click to See Complete Forum and Search --> : full window


blaster
01-04-2003, 04:59 AM
i wish to do a window in javascript that ocupes the full window with a black background and green letters (System)

AdamBrill
01-04-2003, 09:27 AM
Try this:


<HTML>
<HEAD>
</HEAD>
<BODY style="color:#ff0000; background-color:black">
<script type="text/javascript">
if (this.name!='fullscreen'){
window.open(location.href,'fullscreen','fullscreen,scrollbars')
}
</script>
<a href="JavaScript:window.close(self)">Click here to return to normal window size</a>
This is a test.
</body>
</html>

AdamBrill
01-04-2003, 09:30 AM
oops... The text color is red right now. To change it to green, just change this:

color:#ff0000;

to this:

color:#ooffoo;

Sorry about that...

blaster
01-04-2003, 11:34 AM
but that only is for appear/disappear
what i want is make apear a message (letter by letter) and when the message is complete , the window closes

blaster
01-04-2003, 11:37 AM
i forgot to say the window is without scrollings and the mouse doesnt appear

pyro
01-04-2003, 11:43 AM
Sounds like you are looking for the Matrix effect. Find it here http://javascript.internet.com/bgeffects/matrix.html. This doesn't make your cursor disappear, but it can easily be done with css.

pyro
01-04-2003, 12:08 PM
Here it is customized to have no cursor. Note: it uses a custom cursor, so the custom.cur file that I included must be uploaded to the same place as you page.

blaster
01-04-2003, 02:25 PM
tks a lot