OZONE Asylum
Forums
CSS - DOM - XHTML - XML - XSL - XSLT
Text Rollover without flicker
This page's ID:
28243
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
Skaarjj has it right. I have good news and bad news. The good news: the code below does exactly what i want to do. The bad news: the image is supposed to open on top of a flash movie - but if memory serves me right, that isn't possible is it? to have an image rollover a flash movie? Btw, what i'm trying to do is have a "help screen", a screenshot with notations, layered on top of the flash movie. the help screen would explain the navigation. it would be activated by a mouseover on a help link in the top menu bar. I guess I'll have to do this in Flash :( http://www.sleepingwolves.com/gallery/gallery.html [code]<script type="text/javascript"> function toggle(o) { var div=document.getElementById(o); div.style.display=(div.style.display=='none')? 'block':'none'; } </script> <body> <a href="javascript:;" onmouseover="toggle('div1');" onmouseout="toggle('div1');">Help</a> <div id="div1" align=center style="display:none;"> <img src="help.jpg" /><br /> </div>[/code]
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »