Forum Moderators: phranque
What makes a good slide show? What makes them stink? What makes for good/poor navigation & page structure?
Is it more useful to have spiders index only the intro page or first slide (so search engines display that) or the whole sequence (so searchers find the most relevant slide)?
What about indexing slides, or not, in a site's Search feature?
What other usability issues have I not even thought of?
Also, can anyone suggest good slide show creation tools? I use WebPics on Mac OS 9 for indexing photographs. Very, very easy to use, but when it comes to web pages I have to hammer the HTML pretty hard to get what I want. I'd really like a template-based tool, but the one I tried recently didn't build slide-to-slide links, so was pretty useless.
Great looking pictures on a interesting subject is what makes them successful. We just launched a slideshow on stationary and it does well, so as far as I know they work for anything provided the show is on topic to the user.
We launch our slideshows in a decent sized popup that people can then scroll through at their leisure. This way if they are not into the pictures, they can just close the popup and find something else.
A friend claims thumbnails reduce his mental overhead; if he's comparing two pictures, the previous picture's thumbnail helps him remember what he saw. Plus of course it's a way to preload the next page's picture, if the thumbnail is actually a resized version of same.
Any comments on using either <LINK> tags, anchor REL attributes, or JavaScript to preload the next image or page? How much does preloading really help? My site gets overseas vistors on old computers with slow connections. I'm on DSL and can't tell the difference.
If you know any especially good or bad slide shows, or ones with particularly ingenous or problematic features, please sticky me the URL -- I'd like to look.
This is the old trick of loading image 03.jpg resized to 1 pixel x 1 pixel, except in this case we actually get some use out of it.
BTW, tedster posted [webmasterworld.com] this little gem in 2000. It preloads the graphic for the next page into the browser cache, and if properly placed (after the end of the page's HTML), loads the graphic after the page load completes. I tried it and it works great, even on NN4.
<script language="JavaScript" type="text/javascript">
<!--nextslide=new Image()
nextslide.src="filename.ext"//-->
</script>
This downloads the image "filename.ext" to the cache.
The LINK tag doesn't seem to be very widely supported. It preloads the next page; I don't know whether that includes images. Put in the HEAD section:
<link rel="next" href="pagename.html">