Forum Moderators: open
The problem I am having is this: I am making a page using ImageReady that contains an animation of photos fading in and out (which is the main part of the page). The background of the page has links containing rollovers. The kink is that the animation stops when the rollovers are activated. Is there a way I can edit the HTML outputted from ImageReady to make a "page within a page" so the animation continues no matter when the rollovers are activated? Also, any tips on accessing the HTML through ImageReady would be greatly appreciated, since the way I am doing it is a little complicated.
The idea would be to use ImageReady to create two pages, one of which is only the slide show itself inside the <body>. The other page would be the rest of what you call the "background", which I am assuming is the "parent" page that holds the iframe - all the rest of your current page's content.
The iframe tag would be on the parent page and use the src= attribute, pointing it to the second page you created (the one with just the slide show). The iframe syntax would be something like this:
<iframe src="slideshow.html" frameborder="0" width="300" height="400" scrolling="no" name="slides"></iframe>
The issue you describe may be a javascript conflict that this approach does not resolve - because javascript "runs" both the slideshow and the rollovers. But give this a try firs before you get into any kind of major javascript surgery.
[edited by: tedster at 7:13 am (utc) on Jan. 3, 2005]
<td><iframe></iframe></td>
It may help you to visualize what's going on with your layout to make the table tag say <table border="1"> while you are working on the page. You can return it to border="0" when you are all set.
The second way was to use the slideshow image and place the background in that way. Putting the <TD> for the iframe will either put the file before or after the slideshow, not on top of it.
I have the background and the slideshow save as two separate html files. I would not mind saving the slideshow as an animated gif if I could center it within the background page. But I know nothing of HTML, which is why I was using ImageReady. ;-)
If this end up to be an impossible task, I think I can change to layout to make up for this problem. I suppose it's just the sense of not being able to figure it out, since a good part of my site will be dedicated to photos and I would like to display them intermittently. As always, I appreciate any advice you can give. Thanks!