I am using jQTouch to show a table list. When a cell (really a <li> tag in jQTouch) is clicked, I would like to animate the height of the cell down to 0, then hide the element.

I have tried using jquery.animate() for this, and it works on firefox/chrome/opera, but it is super slow on the iPhone.

Does anyone have any idea how to use -webkit-animate (or some iPhone compatible framework, such as jQTouch), to do this?

Thanks, Brett

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

CSS:

-webkit-transition-property: height;
-webkit-transition-duration: 0.5s;

JS:

$('element').css('height', 0).bind('webkitTransitionEnd', function() {
  $(this).hide();
}); ;
link|improve this answer
Works great! Thanks ;) – Brett Jun 3 '10 at 14:26
It's customary here to click the check to indicate that this was the answer to your question. Glad it helped. – Jakub Hampl Jun 3 '10 at 14:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.