The script has no name but can be found at:
http://www.dynamicdrive.com/forums/s...ead.php?t=8136
It was posted by jscheuer1.
I would like to know if it is possible to link the images to pages within the site.
Printable View
The script has no name but can be found at:
http://www.dynamicdrive.com/forums/s...ead.php?t=8136
It was posted by jscheuer1.
I would like to know if it is possible to link the images to pages within the site.
Try this:
Hope this helps.Code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<noscript><img src="files/1_side.jpg"></noscript>
<script type="text/javascript">
function robin(){
//Set Your Images in the below Array:
var robin_im=['files/1_side.jpg', 'files/2_side.jpg', 'files/3_side.jpg', 'files/5_side.jpg', 'files/8_side.jpg']
//set the links in the below Array:
var robin_link=['about.html', 'test.php', 'files/3_side.jpg', 'files/5_side.jpg', 'files/8_side.jpg']
//////////////// Stop Editing //////////////////
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
var num=readCookie('robim')? readCookie('robim')*1 : 0;
document.write('<a href="'+robin_link[num]+'"><img src="'+robin_im[num]+'"></a>')
num=num<robin_im.length-1? num+1 : 0;
createCookie('robim', num);
}
robin();
</script>
</body>
</html>
Yes ... thank you ... but am I supposed to do something with
document.write('<a href="'+robin_link[num]+'"><img src="'+robin_im[num]+'"></a>')
The images appear in order on page load .... please look at the code
thank you for your time
Actually, after publishing it - it looks and works great ... thank you
the site i'm working on is http://www.vikibarefoot.com/Nash
http://www.dynamicdrive.com/forums/s...function+robin
I love these scripts. I do sites for professional artists and this is a stunning element to ad to their home pages.
I wonder why I am getting a blue or purple border around the images. It wasn't that way on the other site and I can't seem to fix it.
Thank you ... I love this site ...:confused:
http://www.dynamicdrive.com/forums/s...function+robin
That would be seen at http://www.vikibarefoot.com/BethNash
Very cool looking website... I almost hate looking at others sites because they make mine look bad!!! :)
If you're messing around with images, you may want to peek at this Smashing Magazine article. They are something I'd like to use at some point, but I just don't do enough with images yet. I plan on using a few when I put up the "fun stuff" portion of my site, funny photos etc... Take a peek: http://www.smashingmagazine.com/2007...ws-lightboxes/
One other side note... Your e-mail addresses when I click them try and force me to use yahoo e-mail to contact you. Not everyone has a yahoo account.
Check out this script: http://www.dynamicdrive.com/emailriddler/
One other nice benefit is that it hides your e-mail address. Apparently from what I've read, harvesting bots snag your e-mail and then you get spammed to death. Granted you may want your e-mail visible to your clients, but I'd prefer to just use the "click here to e-mail me" thing. The only negative of course, is if they don't have a default e-mail editor. "shrug"
Thanks for both the sites ... I'm sure I'll find a use for the image one at some point.
Do you use the emailriddler? You said that it brings up a screen to send a Yahoo email. When I click on it - it brings up a screen to send and Outlook message.
I guess it has to go somewhere!