mirror of
https://github.com/openeggbert/speedy-blupi-games.git
synced 2025-03-25 16:47:47 +01:00
279 lines
9.5 KiB
HTML
279 lines
9.5 KiB
HTML
|
<html>
|
|||
|
|
|||
|
<head>
|
|||
|
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
|||
|
<title>FREE eGames Demos</title>
|
|||
|
|
|||
|
<STYLE>
|
|||
|
<!--
|
|||
|
.TextScrollStyle {
|
|||
|
visibility:visible;
|
|||
|
font-size:16pt;
|
|||
|
font-family:Arial;
|
|||
|
font-weight:bold;
|
|||
|
padding-top:5;
|
|||
|
}
|
|||
|
-->
|
|||
|
</STYLE>
|
|||
|
|
|||
|
<SCRIPT LANGUAGE="JavaScript1.2">
|
|||
|
|
|||
|
/*
|
|||
|
Dynamic Fader Script
|
|||
|
Created and submitted by Nicholas Poh (hwinmain@yahoo.com)
|
|||
|
Permission granted to Dynamicdrive.com to feature script in archive
|
|||
|
For full source code and installation instructions to this script, visit http://dynamicdrive.com
|
|||
|
*/
|
|||
|
|
|||
|
var hexbase= new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F");
|
|||
|
var value=0;
|
|||
|
var Dec2Hex=new Array();
|
|||
|
for (x=0; x<16; x++){
|
|||
|
for (y=0; y<16; y++){
|
|||
|
Dec2Hex[value]= hexbase[x] + hexbase[y];
|
|||
|
value++;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function RGB2STR(rgbcolor)
|
|||
|
{
|
|||
|
return Dec2Hex[rgbcolor>>16] + Dec2Hex[(rgbcolor>>8)&0xFF] + Dec2Hex[rgbcolor&0xFF];
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/////Congifure following variables to customize fader//
|
|||
|
|
|||
|
var scrollerwidth=200
|
|||
|
var scrollerheight=50
|
|||
|
var TS_colorFG = 0xCC3333; // Text color
|
|||
|
var TS_colorBG = 0x4C2A86; // Background color
|
|||
|
var TS_ymax = 25; // Total animation frame
|
|||
|
var TS_ystep = 1; // 1 or -1 only
|
|||
|
var TS_speed = 15;
|
|||
|
|
|||
|
var TS_message = new Array();
|
|||
|
// Put messages here
|
|||
|
TS_message[0]='Arcade Games!'
|
|||
|
TS_message[1]='Card Games!'
|
|||
|
TS_message[2]='Casino Games!'
|
|||
|
TS_message[3]='Classic Games!'
|
|||
|
TS_message[4]='MahJongg!'
|
|||
|
TS_message[5]='Puzzles!'
|
|||
|
TS_message[6]='Strategy Games!'
|
|||
|
TS_message[7]='Shoot-em-Ups!'
|
|||
|
TS_message[8]='And more...!'
|
|||
|
|
|||
|
/////End configuration//////////////////
|
|||
|
|
|||
|
var TS_ypos = 0;
|
|||
|
var TS_yposOrg = 0;
|
|||
|
var TS_color = TS_colorBG;
|
|||
|
var TS_curMsg = 0;
|
|||
|
|
|||
|
// Calculate the difference between background and foreground color
|
|||
|
var dfRed = -((TS_colorBG>>16) - (TS_colorFG>>16)) / (TS_ymax>>1);
|
|||
|
var dfGreen = -(((TS_colorBG>>8)&0xFF) - ((TS_colorFG>>8)&0xFF)) / (TS_ymax>>1);
|
|||
|
var dfBlue = -((TS_colorBG&0xFF) - (TS_colorFG&0xFF)) / (TS_ymax>>1);
|
|||
|
var TS_opColor = (dfRed<<16) + (dfGreen<<8) + (dfBlue);
|
|||
|
|
|||
|
var timer;
|
|||
|
|
|||
|
function UnloadMe()
|
|||
|
{
|
|||
|
clearTimeout(timer);
|
|||
|
}
|
|||
|
|
|||
|
function ScrollText()
|
|||
|
{
|
|||
|
if (document.all) {
|
|||
|
// IE
|
|||
|
TextScroll.style.paddingTop = TS_ypos;
|
|||
|
TextScroll.style.color = TS_color;
|
|||
|
}
|
|||
|
|
|||
|
TS_ypos += TS_ystep;
|
|||
|
|
|||
|
TS_color += TS_opColor;
|
|||
|
if (TS_ypos == (TS_ymax>>1) - TS_ystep) {
|
|||
|
TS_opColor *= -1;
|
|||
|
}
|
|||
|
|
|||
|
if (TS_ypos >= TS_ymax-1 || TS_ypos <= 0) {
|
|||
|
TS_color = TS_colorBG;
|
|||
|
TS_opColor *= -1;
|
|||
|
|
|||
|
if (TS_ystep > 0) {
|
|||
|
TS_ypos = 0;
|
|||
|
} else {
|
|||
|
TS_ypos = TS_ymax;
|
|||
|
}
|
|||
|
|
|||
|
if (++TS_curMsg > TS_message.length-1) {
|
|||
|
TS_curMsg = 0;
|
|||
|
}
|
|||
|
|
|||
|
// Change text
|
|||
|
if (document.all) {
|
|||
|
// IE
|
|||
|
TextScroll.style.paddingTop = TS_ypos;
|
|||
|
TextScroll.innerHTML=TS_message[TS_curMsg];
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// Set timer
|
|||
|
timer = setTimeout('ScrollText()', TS_speed);
|
|||
|
}
|
|||
|
|
|||
|
function ScrollTextDisplay()
|
|||
|
{
|
|||
|
var navName=navigator.appName;
|
|||
|
var navVer=parseInt(navigator.appVersion)
|
|||
|
|
|||
|
if (!(navName=="Microsoft Internet Explorer" && navVer>=4)){
|
|||
|
return;
|
|||
|
}
|
|||
|
if (navName=="Microsoft Internet Explorer") {
|
|||
|
TS_speed = 20 + TS_speed;
|
|||
|
}
|
|||
|
|
|||
|
document.write('<SPAN ID="TextScroll" CLASS="TextScrollStyle" style="width:'+scrollerwidth+';height:'+scrollerheight+'">');
|
|||
|
document.write(TS_message[0]);
|
|||
|
document.write('</SPAN>');
|
|||
|
|
|||
|
if (TS_ystep > 0) {
|
|||
|
TS_ypos = 0;
|
|||
|
} else {
|
|||
|
TS_ypos = TS_ymax;
|
|||
|
}
|
|||
|
|
|||
|
if (document.all) {
|
|||
|
// IE
|
|||
|
TextScroll.style.backgroundColor = TS_colorBG;
|
|||
|
TextScroll.style.color = TS_color;
|
|||
|
}
|
|||
|
|
|||
|
window.onload=new Function("timer = setTimeout('ScrollText()', 1000);")
|
|||
|
window.onunload=UnloadMe;
|
|||
|
}
|
|||
|
</SCRIPT>
|
|||
|
|
|||
|
|
|||
|
</head>
|
|||
|
|
|||
|
<body bgcolor="#4C2A86" text="#FFFFFF" link="#FFFF33" vlink="#FFFF33" alink="#FFFF33">
|
|||
|
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
|||
|
<tr>
|
|||
|
<td width="100%" style="padding-left: 0; padding-right: 0" colspan="3">
|
|||
|
<p align="center" style="margin-top: 0; margin-bottom: 0"><b><span style="font-size:13.5pt;font-family:Arial;
|
|||
|
mso-fareast-font-family:"Times New Roman";mso-ansi-language:EN-US;mso-fareast-language:
|
|||
|
EN-US;mso-bidi-language:AR-SA">FREE eGames Demos!</span></b></p>
|
|||
|
<hr>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td width="41" style="padding-left: 0; padding-right: 0" valign="top" align="right">
|
|||
|
<p align="center"><img border="0" src="images/left.gif" align="left" width="99" height="436">
|
|||
|
</td>
|
|||
|
<td width="100%" valign="top">
|
|||
|
<p style="margin-top: 0"><span style="font-size:10.0pt">There are many
|
|||
|
exciting </span><b><span style="font-size:10.0pt;font-family:Arial">FREE</span></b><span style="font-size:10.0pt">
|
|||
|
eGames Demos available for download right now! Follow this link to go to <a href="http://www.egames.com/redir/redir.asp?B=6">eGames
|
|||
|
demos!</a><a href="#outside"><span style="text-decoration:none;text-underline:
|
|||
|
none"><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
|
|||
|
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
|
|||
|
stroked="f">
|
|||
|
<v:stroke joinstyle="miter"/>
|
|||
|
<v:formulas>
|
|||
|
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
|
|||
|
<v:f eqn="sum @0 1 0"/>
|
|||
|
<v:f eqn="sum 0 0 @1"/>
|
|||
|
<v:f eqn="prod @2 1 2"/>
|
|||
|
<v:f eqn="prod @3 21600 pixelWidth"/>
|
|||
|
<v:f eqn="prod @3 21600 pixelHeight"/>
|
|||
|
<v:f eqn="sum @0 0 1"/>
|
|||
|
<v:f eqn="prod @6 1 2"/>
|
|||
|
<v:f eqn="prod @7 21600 pixelWidth"/>
|
|||
|
<v:f eqn="sum @8 21600 0"/>
|
|||
|
<v:f eqn="prod @7 21600 pixelHeight"/>
|
|||
|
<v:f eqn="sum @10 21600 0"/>
|
|||
|
</v:formulas>
|
|||
|
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
|
|||
|
<o:lock v:ext="edit" aspectratio="t"/>
|
|||
|
</v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" alt="" style='width:10.5pt;
|
|||
|
height:6.75pt'>
|
|||
|
<v:imagedata src="demos.5.gif"
|
|||
|
o:href="../../../../CD%20ROMS/eGames%20Casino/program/assets/images/eXternal.gif"/>
|
|||
|
</v:shape><![endif]-->
|
|||
|
<img border="0" src="images/demos.5.gif" v:shapes="_x0000_i1025" width="13" height="9"></span></a><br>
|
|||
|
You may download as many of these </span><b><span style="font-size:10.0pt;
|
|||
|
font-family:Arial">FREE</span></b><span style="font-size:10.0pt"> eGames Demos
|
|||
|
as you like!</span></p>
|
|||
|
<p><span style="font-size: 10.0pt">e</span><span style="font-size:10.0pt">Games
|
|||
|
offers Demos in many exciting categories:</span></p>
|
|||
|
|
|||
|
<div align="center">
|
|||
|
<SCRIPT language="JavaScript1.2">
|
|||
|
if (document.all)
|
|||
|
ScrollTextDisplay()
|
|||
|
</SCRIPT></div>
|
|||
|
<br>
|
|||
|
<p><span style="font-size:10.0pt">Each of these demos are available in a
|
|||
|
full Premium Version which includes more challenging and exciting levels
|
|||
|
and cool options. If you enjoy these demos and would like to purchase any
|
|||
|
of the premium versions available, go to <a href="http://www.egames.com/redir/redir.asp?B=5"><b>www.egames.com</b></a>
|
|||
|
<a href="#outside"><span style="text-decoration:none;text-underline:none"><!--[if gte vml 1]><v:shape
|
|||
|
id="_x0000_i1026" type="#_x0000_t75" alt="" style='width:10.5pt;height:6.75pt'>
|
|||
|
<v:imagedata src="demos.5.gif"
|
|||
|
o:href="../../../../CD%20ROMS/eGames%20Casino/program/assets/images/eXternal.gif"/>
|
|||
|
</v:shape><![endif]-->
|
|||
|
<img border="0" src="images/demos.5.gif" v:shapes="_x0000_i1026" width="13" height="9"></span></a>and
|
|||
|
choose the link for <20>Shop Online<6E>.</span></p>
|
|||
|
<p style="margin-bottom: 1"><i><span style="font-size:10.0pt;font-family:"Times New Roman";mso-fareast-font-family:
|
|||
|
"Times New Roman";mso-ansi-language:EN-US;mso-fareast-language:EN-US;
|
|||
|
mso-bidi-language:AR-SA">We at eGames hope your gaming experience is an
|
|||
|
enjoyable one!<br>
|
|||
|
Please come back soon!</span></i>
|
|||
|
<hr>
|
|||
|
<p align="center" style="margin-top: 0; margin-bottom: 0"><span style="font-size:12.0pt;font-family:Arial;
|
|||
|
mso-fareast-font-family:"Times New Roman";mso-ansi-language:EN-US;mso-fareast-language:
|
|||
|
EN-US;mso-bidi-language:AR-SA"><!--[if gte vml 1]><v:shapetype id="_x0000_t75"
|
|||
|
coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
|
|||
|
filled="f" stroked="f">
|
|||
|
<v:stroke joinstyle="miter"/>
|
|||
|
<v:formulas>
|
|||
|
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
|
|||
|
<v:f eqn="sum @0 1 0"/>
|
|||
|
<v:f eqn="sum 0 0 @1"/>
|
|||
|
<v:f eqn="prod @2 1 2"/>
|
|||
|
<v:f eqn="prod @3 21600 pixelWidth"/>
|
|||
|
<v:f eqn="prod @3 21600 pixelHeight"/>
|
|||
|
<v:f eqn="sum @0 0 1"/>
|
|||
|
<v:f eqn="prod @6 1 2"/>
|
|||
|
<v:f eqn="prod @7 21600 pixelWidth"/>
|
|||
|
<v:f eqn="sum @8 21600 0"/>
|
|||
|
<v:f eqn="prod @7 21600 pixelHeight"/>
|
|||
|
<v:f eqn="sum @10 21600 0"/>
|
|||
|
</v:formulas>
|
|||
|
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
|
|||
|
<o:lock v:ext="edit" aspectratio="t"/>
|
|||
|
</v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" alt="" style='width:9.75pt;
|
|||
|
height:6.75pt'>
|
|||
|
<v:imagedata src="demos.6.gif"
|
|||
|
o:href="../../../../CD%20ROMS/eGames%20Casino/program/assets/images/eXternal.gif"/>
|
|||
|
</v:shape><![endif]-->
|
|||
|
<img src="images/demos.6.gif" border="0" v:shapes="_x0000_i1025" width="13" height="9"></span><span style="font-size:10.0pt;font-family:"Times New Roman";mso-fareast-font-family:
|
|||
|
"Times New Roman";mso-ansi-language:EN-US;mso-fareast-language:EN-US;
|
|||
|
mso-bidi-language:AR-SA">= <i>denotes that you are connecting to the Internet</i></span></td>
|
|||
|
<td width="100" valign="top" align="left"><img border="0" src="images/right.gif" width="99" height="437"></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td width="101" style="padding-left: 0; padding-right: 0"></td>
|
|||
|
<td width="686"></td>
|
|||
|
<td width="100"></td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
|
|||
|
</body>
|
|||
|
|
|||
|
</html>
|