- Joined
- Apr 23, 2008
- Messages
- 240
- Reaction score
- 0
This isn't much of a release, but I thought I'd post it anyways.
This adds a mini play screen to your website that can serve as the "portal" page to get to your real home page.
Heres what you need-
index.php
A picture.jpg, for the top part of the play screen.
The images that are attached.
NOTE: I didn't make all of this. I just edited someone elses script that I found on Google with images extracted with res hack. xP
Mini guide:
1. Download the pictures and save the code as index.php.
2. Make a picture.jpg that will go along with your play screen.
3. Put them all in your www folder (assuming youre using wamp)
4. Rename your home page base.php.
Yea.. i might have missed something, so tell me if something goes wrong. xP
EDIT~~~~~
Example:
credits to josho192837
This adds a mini play screen to your website that can serve as the "portal" page to get to your real home page.
Heres what you need-
index.php
PHP:
<HTML>
<HEAD>
<script language="JavaScript" type="text/javascript">
<!--
if (document.images) {
homebuttonup = new Image();
homebuttonup.src = "bitmap_2.bmp" ;
homebuttondown = new Image() ;
homebuttondown.src = "bitmap_1.bmp" ;
homebuttonpenis = new Image() ;
homebuttonpenis.src = "bitmap_3.bmp" ;
}
function buttondown( buttonname )
{
if (document.images) {
document[ buttonname ].src = eval( buttonname + "down.src" );
}
}
function buttonup ( buttonname )
{
if (document.images) {
document[ buttonname ].src = eval( buttonname + "up.src" );
}
}
function penis ( buttonname )
{
if (document.images) {
document[ buttonname ].src = eval( buttonname + "penis.src" );
}
}
// -->
</script>
</HEAD>
<BODY>
<br><br><br>
<p align="center">
<IMG SRC="picture.jpg">
<br>
<a href="base.php"
onmouseover="buttondown('homebutton')"
onmouseout="buttonup('homebutton')"
onmousedown="penis('homebutton')"
onmouseup="buttonup('homebutton')">
<img src="bitmap_2.bmp" name="homebutton" border="0" />
</a>
</BODY>
</HTML>
A picture.jpg, for the top part of the play screen.
The images that are attached.
NOTE: I didn't make all of this. I just edited someone elses script that I found on Google with images extracted with res hack. xP
Mini guide:
1. Download the pictures and save the code as index.php.
2. Make a picture.jpg that will go along with your play screen.
3. Put them all in your www folder (assuming youre using wamp)
4. Rename your home page base.php.
Yea.. i might have missed something, so tell me if something goes wrong. xP
EDIT~~~~~
Example:
credits to josho192837
To view the content, you need to sign in or register
Attachments
Last edited: