i使用TweenMax和pixi.js
codepen.io/nimaina/pen/aPERKO
如何去除黑色背景?
答案 0 :(得分:0)
您看到的黑色背景是默认的PIXI.Application设置。
默认宽度:800
默认高度:600
默认backgroundColor:0x000000(黑色)
基本上,我看到有两个选择可以避免黑色背景。
我看到greensock.png的尺寸为538x173。
var app = new PIXI.Application( {
view: document.querySelector("#canvas"),
width: 538,
height: 173
});
transparent:true
并使背景透明var app = new PIXI.Application( {
view: document.querySelector("#canvas"),
transparent: true
});