css - Advanced Jquery animation -


just wondering possible create animation in jquery?

http://www.a-cero.com/

this i've come far: http://jsfiddle.net/fvbqa/326/

from comment on own question, seems initial answer not looking for. perhaps try combining 1 of numerous reflection plugins jquery .slidedown()? here's started:

html:

<div id="slidebottom" class="slide">   <button>slide it</button>   <div class="inner">slide bottom</div> </div> 

css:

.slide {   position: relative; } .slide .inner {   position: absolute;   left: 0;   bottom: 0; } 

javascript:

$(document).ready(function() {   $('#slidebottom button').click(function() {     $(this).next().slidetoggle();   }); }); 

source: http://www.learningjquery.com/2009/02/slide-elements-in-different-directions

numerous reflection plugins (from google):

a guide!


Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -