okay, it was fairly easy. here is the heartpiece of my template: two lines of JavaScript Code.
Code: Select all
<html><head>
<title>img_002</title>
<script type="text/javascript">
aktiv=window.setTimeout("location.href='img_003.html'", 4000);
</script>
</head>
<body>
<a href="img_001.html">previous</a>
Here you see image img_002.jpg
<a href="img_003.html">next</a><br>
<a href="javascript:window.clearTimeout(aktiv);">stop</a>
</body>
</html>
Okay, what's going on?
When you create a html page of your images and you choose the option to create a html file for each image, you will see something like
http://www.fam.tuwien.ac.at/~thomas/gal ... _2154.html
Now you can click allways on "next" to get to the next image, but it would be cool (here comes my idea) that the next image is shown (loaded) every 4 seconds. I just stare at the screen and see every single image.
In my example you just see picture no. 2 of your gallery. on the left side of the image you have the "previous" link to image no.1 and on the right to image no.3
if you do nothing, after 4 seconds image no. 3 (the next one) is loaded.
but if you like the actual image very much and want to have a closer look at it, click on "stop" and nothing will be loaded automatically. If you want to see the next picture after say 1 minute, click on " next" and after 4 seconds... yes you know it.
very easy, very simple, I just wanted to share it with you!
Thomas