Link to home
Start Free TrialLog in
Avatar of QLJ
QLJFlag for Afghanistan

asked on

Animate upon mouseover

Hi,
The scenario is like this: Divide the screen into 2 columns: left col consists of all the rollover buttons and the right col will show the animation. How can I do it such that the right col animation will show up when I mouse over the respective buttons in the left column?
Kindly provide some step by step help. Thanx!
Avatar of JonSnoops
JonSnoops

Not in PhotoShop. You'll want Fireworks and/or Dreamweaver.
ASKER CERTIFIED SOLUTION
Avatar of weed
weed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The bigger question is if it will show up in time...if it's a large animated gif, it may not run completely (or even load) before the mouse moves away.

You can preload the images, but that doesn't change the time needed to run the thing.


If you have Adobe Golive then this tutorial will show you how to do it: http://www.golivebasics.com/rollovertut

Its very simple, as weed said.  But to elaborate on the html/javascript pocedure a little,  If you want Image2 to change when the move is moved over Image1, then you need an onmouse over even for Image1 that changes the source file for Image2 to the animation you want displayed.  You would also probably want to have an mouseout event as well to change Image2 back to what it was before.  Let me know if you need any further detail.