我正在使用vuetify.js框架将Three.js渲染器放入。我希望代码执行的操作是在调整窗口大小时更改div元素的尺寸。
这是我项目的一部分,我省略了不必要的代码块,所以不要介意未使用的变量:)
<style scoped>
.map__three {
position: absolute;
bottom: 60px;
left: 0px;
}
</style>
<template>
<div class="flex fill-height wrap">
<v-btn></v-btn>
<div id="map" class="flex fill-height wrap" v-on:dblclick="addNewPoi3d"></div>
</div>
</template>
<script>
export default {
name: 'ThreeTest',
data() {
return {
scene: null,
renderer: null,
camera: null,
mouse: null,
mousePosition: new THREE.Vector2(),
canvasPosition: null,
rayCaster: new THREE.Raycaster(),
mapWidth: null,
mapHeight: null,
mapDimensions: null
};
},
methods: {
init() {
let map = document.getElementById('map');
this.mapDimensions = map.getBoundingClientRect();
this.mapWidth = this.mapDimensions.width;
this.mapHeight = this.mapDimensions.height;
this.scene = new THREE.Scene();
this.scene.background = new THREE.Color( 0xf0f0f0 );
this.camera = new THREE.PerspectiveCamera(
75,
this.mapWidth/this.mapHeight,
0.1,
1000,
);
this.camera.position.z = 3;
this.renderer = new THREE.WebGLRenderer();
this.renderer.setSize(this.mapWidth, this.mapHeight);
map.appendChild(this.renderer.domElement);
// EVENT LISTENERS:
window.addEventListener('resize', this.onWindowResize, false);
},
onWindowResize() {
this.camera.aspect = this.mapWidth / this.mapHeight;
this.camera.updateProjectionMatrix();
this.renderer.setSize(this.mapWidth, this.mapHeight);
},
animate() {
requestAnimationFrame(this.animate);
this.render();
},
render() {
this.renderer.render(this.scene, this.camera);
},
},
mounted() {
this.init();
this.animate();
}
};
</script>
预期:它应该调整我加载的场景的尺寸和相机的宽高比。
用途:没有:D与场景和相机的大小相同。
答案 0 :(得分:1)
我认为您需要在this.mapWidth
函数中重新计算this.mapHeight
和onWindowResize()
。目前,该代码将相机和渲染器设置为应用最初加载时的大小。
尝试一下:
onWindowResize() {
let map = document.getElementById('map');
this.mapDimensions = map.getBoundingClientRect();
this.mapWidth = this.mapDimensions.width;
this.mapHeight = this.mapDimensions.height;
this.camera.aspect = this.mapWidth / this.mapHeight;
this.camera.updateProjectionMatrix();
this.renderer.setSize(this.mapWidth, this.mapHeight);
},