如图,这个popovers上面的三角我使用plus.nativeObj.View和plus.nativeObj.Bitmap绘制的,本地设备调试时效果为图一,但是云打包之后三角不见了如图二。
部分代码如下。
var popovers = {};
popovers.view = new plus.nativeObj.View(App.ID.POPOVERSVIEW, {
top: (headerHeight - viewHeight) + "px",
left: (DEVICE_WIDTH - viewWidth) / 2 + "px",
height: viewHeight + 'px',
width: viewWidth + 'px',
opacity: '0.9'
});
popovers.view.show();
var arrow = new plus.nativeObj.Bitmap('img/border/arrow.png');
arrow.load('img/border/arrow.png', function() {
popovers.view.drawBitmap(arrow, {
top: '0px',
left: '0px',
width: '100%',
height: '100%'
}, {
top: '0',
left: '0',
width: '100%',
height: '100%'
});
arrow.clear();
});
压缩包为例子
7***@qq.com (作者)
回复好快,赞。上传了一个测试项目,刚使用这个,求指教
2017-01-17 14:04