jquery - JqueryMobile - Migration from 1.3.2 to 1.4.2 - Panel transparent on Slide -
i have problem due migration of cordova-app (jquery + jquery mobile) version 1.3.2 1.4.2.
i have provided example here: http://wasted-dreams.de/tmp/
as can see, panel navigation slides in, , on slide out stays transparent in background few ms. after disapears correctly. effect present on slidein faster , not visible.
the css class added on animation ".ui-panel-animate" , after animation should have ended element gets additional attribute "panel-closed"
so far analysis. realy didn't find css option or js stuff of code can responsible effect.
have idea how fixed?
thanks in advance
it looks have transparent background allows see through content panel underneath. can either add background or change panel-display
attribute push
or overlay
instead of default reveal
<div data-role="panel" data-display="push" id="menue" data-theme="a">
here demo
in demo, can remove data-display="push"
panel see issue reproduced.
api reference: http://api.jquerymobile.com/panel/#option-display
update: ui-panel-wrapper transparent.
add css, , problem goes away:
.ui-panel-wrapper { background-color: rgb(35, 71, 160) !important; }
updated fiddle
Comments
Post a Comment