小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序canvas中webgl能实现透明背景吗?目前测试大部分机型都是黑底,使用
gl.clearColor(0.0, 0.0, 0.0, 0);也无法实现透明
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
webgl 暂时不支持透明。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
希望能尽快开放webgl透明背景功能,这个应该广大群众还是很有需求的
这个解决了吗
还有问题的可以试下这个代码,我是从 threeJS 源码拿出来的,在几台安卓机器上都可以透明,不加则不透明。webGLCanvasId 设置你们的ID。如果用 threeJS,canvas 和 glContext 要传到 threeJS 里面。
wx.createSelectorQuery()
.select(`#${webGLCanvasId}`)
.node()
.exec((res) => {
const canvas = res[0].node;
const glContext = canvas.getContext('webgl', {
alpha: true,
depth: true,
stencil: true,
antialias: true,
premultipliedAlpha: true,
preserveDrawingBuffer: false,
powerPreference: 'default',
failIfMajorPerformanceCaveat: false,
xrCompatible: true
});
// 安卓手机需要调用这个来设置透明
glContext.clearColor(0, 0, 0, 0);
glContext.clear(glContext.COLOR_BUFFER_BIT);
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
机型:华为P20
微信版本号:7.0.4
系统版本号:android 9
代码片段:
https://developers.weixin.qq.com/s/NHibbsms728z
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
webgl 暂时不支持透明。
希望能尽快开放webgl透明背景功能,这个应该广大群众还是很有需求的
这个解决了吗
还有问题的可以试下这个代码,我是从 threeJS 源码拿出来的,在几台安卓机器上都可以透明,不加则不透明。webGLCanvasId 设置你们的ID。如果用 threeJS,canvas 和 glContext 要传到 threeJS 里面。
wx.createSelectorQuery()
.select(`#${webGLCanvasId}`)
.node()
.exec((res) => {
const canvas = res[0].node;
const glContext = canvas.getContext('webgl', {
alpha: true,
depth: true,
stencil: true,
antialias: true,
premultipliedAlpha: true,
preserveDrawingBuffer: false,
powerPreference: 'default',
failIfMajorPerformanceCaveat: false,
xrCompatible: true
});
// 安卓手机需要调用这个来设置透明
glContext.clearColor(0, 0, 0, 0);
glContext.clear(glContext.COLOR_BUFFER_BIT);
});
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
机型:华为P20
微信版本号:7.0.4
系统版本号:android 9
代码片段:
https://developers.weixin.qq.com/s/NHibbsms728z