css - Advanced Jquery animation -
just wondering possible create animation in jquery?
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):
- http://www.jwf.us/projects/jqreflect/
- http://www.digitalia.be/software/reflectionjs-for-jquery
- http://docs.jquery.com/plugins:reflect
- http://cow.neondragon.net/stuff/reflection/
a guide!
Comments
Post a Comment