[Java Script]Random Pics

luish

OSNN Senior Addict
Joined
6 Dec 2001
Messages
429
Hey !
I need a script to show random pic and i need a bit of help.
I found a script, and I changed it a bit but i need to to random the names of the pics too. i will explain.
I got pics in a directory let's say Images, that are numbered,like1205.jpg, 1206.jpg, etc... and I want the script to random me anumberfrom 2067-2089 (the name of the pics I want to random). and showthemrandomaly... but I got a problem doin it.
This is the script i got... how can i upgrade it for my needs ?

Code:
<script language="JavaScript">
<!--

function random_images(){
  var myimages=new Array()
 
  myimages[1]="1.jpg"
  myimages[2]="2.jpg"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
	 ry=1
	 document.write('<img src="'+myimages[ry]+'" border=0>')
}

//-->
</script>


<SCRIPT language="JavaScript">
<!--
random_images()
//-->
</SCRIPT>

Anyone ?
 
This is all you would need, put this in your <head> section

Code:
<script type="text/javascript">
<!--
function random_images() {
  var num_of_pics;
  var starting_number;
  num_of_pics=22;
  starting_number=2067;
  rand=Math.random()*num_of_pics + starting_number;
  document.write("<img src=\"images/" + Math.round(rand) + ".jpg\" />");
}
//-->
</script>

The where you want the image:

<script type="text/javascript">
<!--
random_images()
//-->
</script>
 

Members online

No members online now.

Latest profile posts

Also Hi EP and people. I found this place again while looking through a oooollllllldddd backup. I have filled over 10TB and was looking at my collection of antiques. Any bids on the 500Mhz Win 95 fix?
Any of the SP crew still out there?
Xie wrote on Electronic Punk's profile.
Impressed you have kept this alive this long EP! So many sites have come and gone. :(

Just did some crude math and I apparently joined almost 18yrs ago, how is that possible???
hello peeps... is been some time since i last came here.
Electronic Punk wrote on Sazar's profile.
Rest in peace my friend, been trying to find you and finally did in the worst way imaginable.

Forum statistics

Threads
62,015
Messages
673,494
Members
5,621
Latest member
naeemsafi
Back