给个实例:
document.addEventListener('plusready', function(){
Store.pageInit();
});
Store = {
_categoryShowing : false,
toggleCategory : function(flag) {
if ( flag ) {
plus.webview.show(Store._WVcategory, 'fade-in', iCang.CLIENT.aniDuration);
Store._categoryShowing = true;
} else {
plus.webview.hide(Store._WVcategory, 'fade-out', iCang.CLIENT.aniDuration);
Store._categoryShowing = false;
}
},
pageInit : function() {
// WVMgr是我自己的webview管理函数组,就是用create和append方法添加sub wv.
this._WVindex = iCang.WVMgr.createContentWV('index_content.html');
this._WVcategory = iCang.WVMgr.createContentWV('index_category.html');
this._WVcategory.hide();
}
};
之后使用Store.toggleCategory(true/false)来控制sub webview的显示。
wanZ
或者,只show就行
2015-03-25 21:05
wanZ
embed.show("fade-in",2000);
embed.show("fade-out“,2000);
2015-03-25 21:05
wanZ
都是show就行,不需要hide
2015-03-25 21:05
wanZ
或者,你需要重新create
2015-03-25 21:09