Skip to content Skip to sidebar Skip to footer

Jquery Mobile & Phonegap - Vertical Scrolling Choppy/harder

I'm making an app with JQueryMobile and have come across a problem that I cannot find anywhere else on the internet. My app has a large list, and before I implemented JQMobile, I c

Solution 1:

I had this same issue and removing drop shadows helped in my case.

/* Get rid of shadows for performance 
.ui-bar-a 
.ui-shadow,
.ui-btn-up-a,
.ui-btn-hover-a,
.ui-btn-down-a,
.ui-body-b,
.ui-btn-up-b,
.ui-btn-hover-b,
.ui-btn-down-b,
.ui-bar-c,
.ui-body-c,
.ui-btn-up-c,
.ui-btn-hover-c,
.ui-btn-down-c,
.ui-bar-c,
.ui-body-d,
.ui-btn-up-d,
.ui-btn-hover-d,
.ui-btn-down-d,
.ui-bar-d,
.ui-body-e,
.ui-btn-up-e,
.ui-btn-hover-e,
.ui-btn-down-e,
.ui-bar-e,
.ui-overlay-shadow,
.ui-shadow,
.ui-btn-active,
.ui-body-a {
    text-shadow: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}

Post a Comment for "Jquery Mobile & Phonegap - Vertical Scrolling Choppy/harder"