View previous topic :: View next topic |
Author |
Message |
dessgeega loves your favorite videogame
Joined: 16 Jun 2005 Posts: 6563 Location: bohan
|
Posted: Fri Dec 29, 2006 4:45 pm Post subject: how do i do that random image thing? |
|
|
how do i make a random image come up in my signature?
basically shaper's roll or pkd sigs on that other forum.
basically, the banner at the top of this page.
clue me up. _________________
|
|
Back to top |
|
|
Redeye .
Joined: 02 Oct 2006 Posts: 986 Location: filth
|
Posted: Fri Dec 29, 2006 11:50 pm Post subject: Re: how do i do that random image thing? |
|
|
dessgeega wrote: | how do i make a random image come up in my signature?
basically shaper's roll or pkd sigs on that other forum.
basically, the banner at the top of this page.
clue me up. |
Try View Source or Copy Link Location.
[HTML]
document.writeln('(IMG SRC=''+xoxo[choice]+'' border=0 vspace=1)');
[/HTML]
edit: maybe not.
Here's the code from TGQ:
<script language="JavaScript" type="text/javascript">
<!--
// JavaScript to interpolate random images into a page.
var ic = 530; // Number of alternative images
var xoxo = new Array(ic); // Array to hold filenames
for (i=0;i<ic;i++)
{
xoxo[(i)] = "http://www.gamersquarter.com/banners/tgq"+ (i+1) +".jpg";
}
function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
// Write out an IMG tag, using a randomly-chosen image name.
var choice = pickRandom(ic);
// -->
</script> _________________ I felt sheer anarchic joy when I ran over my first pedestrian. |
|
Back to top |
|
|
Nana Komatsu weak sauce
Joined: 17 Jul 2006 Posts: 1293
|
Posted: Sat Dec 30, 2006 1:29 am Post subject: |
|
|
There's an easy way to do this using PHP. I can set something up for you. |
|
Back to top |
|
|
dessgeega loves your favorite videogame
Joined: 16 Jun 2005 Posts: 6563 Location: bohan
|
Posted: Sat Dec 30, 2006 5:54 am Post subject: |
|
|
thanks nana!
wow, this totally doesn't work on a white background. _________________
|
|
Back to top |
|
|
Nana Komatsu weak sauce
Joined: 17 Jul 2006 Posts: 1293
|
|
Back to top |
|
|
Persona-sama Weltbeherrschen Mangaka
Joined: 14 Oct 2004 Posts: 709 Location: acrylic polymer dismutation
|
Posted: Wed Jan 03, 2007 12:10 am Post subject: |
|
|
I will use this too, if you don't mind!
For my site, rather. _________________
|
|
Back to top |
|
|
Nana Komatsu weak sauce
Joined: 17 Jul 2006 Posts: 1293
|
Posted: Wed Jan 03, 2007 12:26 am Post subject: |
|
|
That was the idea! |
|
Back to top |
|
|
|