繁体   English   中英

为什么我的窗口调整大小事件侦听器不起作用? 使用 Three.js 和 Vuetify.js

[英]Why my window resize event listener doesn't work? Using Three.js and Vuetify.js

我使用 vuetify.js 框架在 a 中放置了一个 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 它属于相同大小的场景和相机。

我认为您需要在onWindowResize()函数中重新计算this.mapWidththis.mapHeight 目前,代码将相机和渲染器设置为应用程序最初加载时的大小。

尝试这个:

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);
},

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM