jquery - Resize div onclick of another div, transition effect -
hey guys. have 2 divs. when click .menu (the grey bar), .sort (the orange bar) resizes in height. i've done using jquery. problem is, without nice transitions. doesn't slide, doesn't fade..nothing. pops down.
here's jsfiddle of mean. http://jsfiddle.net/khcvr/
can possibly me slides down rather pops? jquery knowledge super limited. cheers.
your demo using mootools though question tagged jquery. cleaned demo bit.
demo here : http://jsfiddle.net/jomanlk/khcvr/1/
code here
$(".menu").click(function() { $(".sort").animate({"height" : "350"}, 500); });
Comments
Post a Comment