문제

With Jquery mobile 1.4.2 (latest currently) I've encountered a problem with the popup feature on Android 4.0 (Ice Cream Sandwich).

When displayed the popup appears behind the rest of the page content (can be simulated with a z-index:1 on ui-popup-container)

도움이 되었습니까?

해결책

My solution to this problem was a bit tweaky : add a -webkit-transform:translateZ(0) :

.ui-popup-container {
    -webkit-transform:translateZ(0)
}

(I had to shared this, I lost to much time on it !)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top