Hi! Making a site in dreamweaver cs4 and wants to make a singel button (mouse over)in an animation to bring others buttons. *Not like a dropdown menu!, The others buttons going to be created from the single button seen in an animation when you have mouse over the singel button and be spread out and after that clickable, when you touch the first single button again it will be like a reverse animation. Hope you understands. Someone knows or knows any good tutorial /tips or script to do this or likewise this ?
How about using a Animated GIF created to animate only ones and placed above another. So one will be the animation to display the button the other to hide it. You can detect button click using the image. This is just a quick thought, there can be more professional ways to do this.
Yeah that's the easy way out but not exactly what i want it to be. I want it more like this menu here: Example: http://dice.se
They are using a flash animation to do it, the same effect and be done using and iframe with javascript to change the url with the onmouseover and onmouseout events. to load the image or the page containing the links. <iframe name="FRAME5" width="166" height="93" src="somepicture.gif" frameborder="0" scrolling="no" onmouseover="document.FRAME5.src='pagewithlinks.html'" onmouseout="document.FRAME5.src='somepicture.gif'"></iframe> Code (markup): it's not as fancy, but it achieves the same effect.
ok Thx I testet this first whit js in dw but failed.... tried to made the hole concept in flash and loaded it to dw and it workes fine.