Abhi_Code
Abhi_Code

Reputation: 33

Why JQuery animation(slide) are not smooth on ipad

I am making a slide presentation for ipad. My code is working fine in all browser chrome, safari , Mozilla etc but its little jumpy on ipad.

Here is the jquery code

   $("#sarah01_1").delay(1000).show('slide', {direction: 'right'}, 1000);

here is css code

   #sarah01_1{ position:absolute;
               left:20px; 
               top:115px;
               width:270;
               height:333px;
               display:none;
           }

Upvotes: 1

Views: 772

Answers (1)

Abhi_Code
Abhi_Code

Reputation: 33

i changed slide,blind and some other typical animation to fadeIn , animate etc. now its looking much better. Seems like iPad devices catch size is very low so the heavy animations doesn't run properly. yeah css transition is much better idea for good performance, I will use that in future projects.

Upvotes: 1

Related Questions