I have the basic push slideshow running good, but each image in the
slideshow needs to be a link to a different page when clicked on. I
experimented with regular href code verbiage but it doesn't seem to
work. It's a basic fundamental to link each image to a different page
I would hope. The push style just arranges the code differently and so
I don't know how to implement a href for each image with this style.
please help! thank you very much!
here's what i got right now:
<html>
<head>
<meta http-equiv="content-type" content="text/html;
charset=utf-8">
<meta name="generator" content="Adobe GoLive">
<title>Untitled Page</title>
<link rel="stylesheet" type="text/css" href="css/
slideshow.css"
media="screen" />
<script type="text/javascript" src="js/mootools.js"></script>
<script type="text/javascript" src="js/slideshow.js"></
script>
<script type="text/javascript" src="js/slideshow.push.js"></
script>
<script type="text/javascript">
//<![CDATA[
window.addEvent('domready', function(){
var myShow = new Slideshow.Push('show', [
'1.jpg',
'2.jpg',
'3.jpg',
'4.jpg'
], { height: 300, hu: 'images/', transition:
'back:in:out', width:
400});
});
//]]>
</script>
</head>
<body>
<div id="show" class="slideshow">
<img src="images/1.jpg" height="300" width="400" alt="" />
</div>
</body>
</html>