苹果APP切换到后台,然后再切换到到前台调用监听的resume事件,也成功调用了事件里面的openSamllRedBag方法,而且也播放了音乐,但是html中的div就是不显示。
代码如下:
js代码:
document.addEventListener( "resume", onAppReume, false );
function onAppReume(){
console.log("后台切换到前台!!!");
openSamllRedBag();
}
var openSamllRedBag = function(){
var wav = "music/money.wav";
var p = plus.audio.createPlayer(wav);
p.play();
document.getElementById("container").style.display="inherit";//设置为block也一样。
}
html代码:
<div class="containersmall" id="container" style="display: none;">
<div class="RedBoxsmall">
<div class="topcontentsmall">
<a href="#" class="mui-btn mui-btn-red" id="robBtn" style="height:50px;font-size: 18px;" onclick="grabLaisee();">开 红 包</a>
<br><br><br><font id="redBagMsg" color="#FFF;" style="font-size: small;"></font>
</div>
</div>
</div>
honvi (作者)
z-index已经设置非常大了的,一开始直接在html中设置<div class="containersmall" id="container" style="display:inherit;">是显示的,我的需求刚开始要求隐藏,后台切换到前台动态设置显示
2016-09-29 10:01