Is is possible to creatle a timed slide show + controls

G

GabrielESandoval

I am converting powerepoint presentations to images I want to display
as slide shows.
My questions is I want it so that when a link is clike the slide show
opens. The slides will be initially timed but there are also controls
so that if they want to go back or advance the images at their own
pace. Is this too complicated??

I know how to make a slow that displays images ina times sequence, but
Ive never added controls that would stop the sequence.

Let me know if you need more expanation.
 
R

Randy Webb

(e-mail address removed) said the following on 6/22/2006 2:24 PM:
I am converting powerepoint presentations to images I want to display
as slide shows.
My questions is I want it so that when a link is clike the slide show
opens. The slides will be initially timed but there are also controls
so that if they want to go back or advance the images at their own
pace. Is this too complicated??

I know how to make a slow that displays images ina times sequence, but
Ive never added controls that would stop the sequence.

Let me know if you need more expanation.

Since your timed slideshow is based on either setTimeout or setInterval,
then you define a pointer:

var myInterval = window.setInterval(...)

And then, you have a button:

<button onclick="window.clearInterval(myInterval)">
Stop the slideshow</button>

<button onclick="var myInterval = window.setInterval(...)">
Start the slideshow</button>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,436
Messages
2,571,696
Members
48,796
Latest member
Greg L.
Top