Android WebView doesn't play well with negative transform values
I use negative transform (translate) values in my project and I've noticed
that when asked to do a transform with negative values, WebView does the
changes but you can't see anything's changed.
When i move a div with buttons in at with a negative value, and i try to
press where the buttons should be, it works. It's just that the buttons
appear to stay in their place.
Another guy here that experienced similar results: -webkit-transform does
not work in Android webview
Code:
#page {
width: 180%;
height: 100%;
overflow-x: hidden;
-webkit-transform: translateX(-864px);
-ms-transform: translateX(-864px);
-moz-transform: translateX(-864px);
-o-transform: translateX(-864px);
transform: translateX(-864px);
}
Is that just a weird bug? Somebody else noticed it?
No comments:
Post a Comment