Jquery-Layout on android chrome, draggable not consistently visible while dragging -
tinkering jquery draggables, jquery-layout , meteor here:
[edit] it's @ androiddragissue.meteor.com
on phone (g7100) in chrome pic draggable, doesn't consistently appears "on top" despite high zindex.
drag out left, , becomes visible, drag on vertical center of page, , disappears.
i'm using lib use touch events click, jquery.ui.touch-punch.min, has worked nicely in past.
some coffee..
if meteor.isclient meteor.startup -> $(document).ready -> console.log !$('.ui-draggable'), new date $('.face').draggable helper: (ev,ui) -> $(this).clone().appendto("body") .css "z-index": 99999 "position": 'absolute' .show()
the problem seems local android, ios devices instance work fine. ideas?
thanks!
this appears chrome android gpu layering bug. i'll try create reduced case & post link ticket, in mean time, here's workaround:
.face { -webkit-transform: translatez(0); }
as bonus, promotes image gpu, making moving around page smoother.
Comments
Post a Comment