tags:

views:

70

answers:

4

I want to create slide show to display any images to limited space. And I don't want to use javascript. How to create slide show with html and css only?

A: 

Perhaps:

<a href="3.html"><img src="2.jpeg" alt="..."></a>

and so on.

David Dorward
I didn't understand your answer, he is asking for css/html slide show and you gave him a hyperlink. how this thing help?
Kronass
See an image. Click, see next image. Click, see next image. etc.
David Dorward
+2  A: 

Have a look at this slideshow example using HTML and CSS.

To make it not use javascript, you could just replace the mouseover for each Set (the tabs at the top) with HTML links...

<A HREF="section2.html" TARGET="content" TITLE="Slideshow slide 2">Section 2</A>

However, it really is easier to use javascript, and almost all browsers will have no problem with javascript. Is there a particular reason not to use it?

Mark Mayo
Thank you for answer. That's it. Because user can be javascript off. I worry about it.And also I interest in how to create html and css only.
Shunter1112
fair enough about wanting to create only html and css, but you'll see from here:http://www.w3schools.com/browsers/browsers_stats.aspThat 95% of browsers 2 years ago had javascript on, and that number was increasing. And generally those who are savvy enough to switch it off will realise a page may not work as a result. Still, up to you :)
Mark Mayo
+1  A: 

You can make a nice pages with HTML/CSS to show what you need and make a redirection between them with HTTP META refresh tag:

<meta http-equiv="refresh" content="2;url=http://..."&gt;

This way visitors would not need to click on links to navigate between pages, but would be automatically taken there after certain amount of time...

Laimoncijus
That's good idea, but I want to know the way that user can switch images.
Shunter1112
A: 

You can use 'marquee' tag to make a slide show with html.

http://www.carvia.net/avonslideshow.html - this url gives many examples of it

shinod
It's unique idea! I like this.
Shunter1112