我有以下代码,我试图将 3d 看到(使用REGL
)渲染到 React 组件App
中。一开始它似乎渲染得很好。但我注意到,如果我调整浏览器窗口的大小,组件渲染的 div 会增加高度。因此,任何窗口调整都意味着直接转化为高度的增长,直到 div 高于窗口。我试图了解如何REGL
以及如何REACT
协同工作,所以我不确定将这种行为归因于什么。这可能是我对任何一方的误解。
import React, {
Component
} from 'react';
import regl from 'regl';
class App extends Component {
constructor() {
super()
this.state = {
reglTest: "Test REGL",
};
}
componentDidMount() {
const rootDiv = document.getElementById('reglTest');
console.log(rootDiv);
var reglObj = regl({
container: rootDiv,
})
reglObj.frame(({
tick
}) => {
reglObj.clear({
color: [(tick % 100 * 0.01), 0, 0, 1],
depth: 1,
});
reglObj({
frag: `
void main() {
gl_FragColor = vec4(1, 0, 0, 1);
}`,
vert: `
attribute vec2 position;
void main() {
gl_Position = vec4(position, 0, 1);
}`,
attributes: {
position: [
[(tick % 100 * 0.01), -1],
[-1, 0],
[1, 1]
]
},
count: 3
})()
});
}
render() {
return ( <div id = "reglTest" > {this.state.reglTest} < /div> );
}
}
export default App;
编辑:
我能够将错误追溯到文件resize
中的一个函数REGL
。
function resize () {
var w = window.innerWidth;
var h = window.innerHeight;
if (element !== document.body) {
var bounds = element.getBoundingClientRect();
w = bounds.right - bounds.left;
h = bounds.bottom - bounds.top;
}
canvas.width = pixelRatio * w;
canvas.height = pixelRatio * h;
extend(canvas.style, {
width: w + 'px',
height: h + 'px'
});
}
它h
以一些高值结束计算(在稍微调整浏览器窗口后说 1000+),而window.innerHeight
保持在320
.