Animated Photoshop Buttons

Warriorhazzard

New Member
Hello again :D

I am making a website once again :P and well I wanted to put a bit of animation on the buttons

I am using DreamWeaver right now and I wanted to know how to make a button make an animation when you rollover it...???

Like flashing or something but some animation :)

Thanks

Warrior
;)
 
Well besides using flash or something like that, you could use dreamweaver's built in rollover option. It's just basic javascript, but it does it all for you. Plus, you could probably have an animated and non-animated gif, if you wanted the the button to do stuff when you roll over it. Just have the non-animated one showing first, then animated when you roll over...
 
Javascript is known for that code.

When I come back from school I'll give you the code. Or like TOO said, you can use Flash.
 
Here:

For the image:
<img name="rollover" src="Image URL Here" width="X"
height="y" >

Change the X and Y the real width and height.

For the mouseover on the image:
<A HREF="some.html" onmouseover="document.rollover.src='URL OF IMAGE 2'"
onmouseout="document.but.src='URL OF IMAGE 1'">

Hope it helps!:D
 
Thank you. It worked great :D

Do you guys know how people visiting the website can sumbit a form???

I want to be able to see the form also...maybe for it to be a forum entry or something?

Warrior ;)
 
Back
Top