Zelaron Gaming Forum  
Stats Arcade Portal Forum FAQ Community Calendar Today's Posts Search
Go Back   Zelaron Gaming Forum > The Zelaron Nexus > Science and Art > Tech Help

 
 
Thread Tools Display Modes

 
HTML and JavaScript
Reply
Posted 2002-05-02, 05:34 AM
Post stuff about HTML and JavaScript here.
Old
Profile PM WWW Search
GameCube is neither ape nor machine; has so far settled for the in-betweenGameCube is neither ape nor machine; has so far settled for the in-between
 
 
GameCube
 



 
Reply
Posted 2002-05-02, 05:49 AM in reply to GameCube's post "HTML and JavaScript"
<script language="Javascript1.2">
var no = 33;
var speed = 5;
var snowflake = "starflash.gif";
var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp;
var am, stx, sty;
var i, doc_width = 800, doc_height = 600;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) {
dx[i] = 0;
xp[i] = Math.random()*(doc_width-50);
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
if (ns4up) {
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
}
} else if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
}
}
}
function snowNS() {
for (i = 0; i < no; ++ i) {
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE() {
for (i = 0; i < no; ++ i) {
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowIE()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
// End -->
</script>

Guess the effect...
Old
Profile PM WWW Search
Mr.Lee is neither ape nor machine; has so far settled for the in-betweenMr.Lee is neither ape nor machine; has so far settled for the in-between
 
 
Mr.Lee
 



 
Reply
Posted 2002-05-02, 02:25 PM in reply to GameCube's post "HTML and JavaScript"
*moved*
Old
Profile PM WWW Search
tacoX is neither ape nor machine; has so far settled for the in-betweentacoX is neither ape nor machine; has so far settled for the in-between
 
 
tacoX
 



 
Reply
Posted 2002-05-12, 09:29 AM in reply to GameCube's post "HTML and JavaScript"
that script will randomly place stars on the background of a web page
Sovereign's REAL sig
Old
Profile PM WWW Search
GameCube is neither ape nor machine; has so far settled for the in-betweenGameCube is neither ape nor machine; has so far settled for the in-between
 
 
GameCube
 



 
Reply
Posted 2002-06-06, 06:08 PM in reply to GameCube's post "HTML and JavaScript"
but it needs starflash.gif file i suppose... so...can be used it with any other gif w/o any modifications then the gif name??
Old
Profile PM WWW Search
Sirpullido is neither ape nor machine; has so far settled for the in-betweenSirpullido is neither ape nor machine; has so far settled for the in-between
 
 
Sirpullido
 



 
Reply
Posted 2002-06-07, 07:16 AM in reply to GameCube's post "HTML and JavaScript"
yes any images...
Old
Profile PM WWW Search
Mr.Lee is neither ape nor machine; has so far settled for the in-betweenMr.Lee is neither ape nor machine; has so far settled for the in-between
 
 
Mr.Lee
 



 
Reply
Posted 2002-06-09, 07:53 PM in reply to GameCube's post "HTML and JavaScript"
Err... if i change the gif name it¡s to attach to other image....
BTW I just tried it with other animated gif, changing the line:
var snowflake = "starflash.gif"; to
var snowflake = "img.gif";
and it didn't worked,,, do i have to change any value as speed or smthg? i noticed some fields were empty but as I'm a n00b to Java, i didn't knew if they were fine like that or shall be changed...
THX
Old
Profile PM WWW Search
Sirpullido is neither ape nor machine; has so far settled for the in-betweenSirpullido is neither ape nor machine; has so far settled for the in-between
 
 
Sirpullido
 



 
Reply
Posted 2002-09-08, 10:22 PM in reply to GameCube's post "HTML and JavaScript"
were is a web site to were i can learn java i know html and a little bout cpp(c++)
Old
Profile PM WWW Search
dominator73439 is neither ape nor machine; has so far settled for the in-betweendominator73439 is neither ape nor machine; has so far settled for the in-between
 
dominator73439
 
 

Bookmarks

« Previous Thread | Next Thread »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules [Forum Rules]
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 08:29 PM.
'Synthesis 2' vBulletin 3.x styles and 'x79' derivative
by WetWired the Unbound and Chruser
Copyright ©2002-2008 zelaron.com
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.