notice how when you load squareup.com the form on the left animates in. How do you do a css3 animation like that? Is javascript required to add some class unload?
Thanks
|
notice how when you load squareup.com the form on the left animates in. How do you do a css3 animation like that? Is javascript required to add some class unload? Thanks |
|||||||||||||
|
|
Pure CSS 3 animation would be the best way to go - since it's clean, simple and easy. However, older browsers wont support pure CSS 3 animation so you might be best off with jQuery for now (untill more people support CSS 3 animations perhaps).
Replace #divId with your div id attribute. Don't forget to display: none; the div. For jQuery animations simply go to http://api.jquery.com/animate/ |
|||||
|
|
Actually, after reviewing the source code, that effect appears to be mostly, if not all, CSS3. Here's a snippet of the CSS:
You can view the full CSS at https://d1g145x70srn7h.cloudfront.net/static/db447699c3d01e60cd9b8e1e1c721ce8837f22bd/stylesheets/home.css Here's a copy that's easier to read: http://pastebin.com/gHTn1YuA |
|||
|
|
|
This might help |
|||||||||||||||
|