Vue2+Three.js加载并展示一个三维模型(提供Gitee源码)

目录

一、案例截图

二、安装Three.js

三、代码实现

四、Gitee源码


一、案例截图

二、安装Three.js

npm install three

三、代码实现

模型资源我是放在public文件夹下面的:

完整代码: 

<template>
  <div>
    <div ref="container"></div>
  </div>
</template>

<script>
import * as THREE from 'three';
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader';
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls';
export default {
  name: "HomeView",
  data() {
    return {
      scene: null,
      camera: null,
      renderer: null,
      model: null,
      controls: null,
      width: window.innerWidth,
      height: window.innerHeight,
    };
  },
  mounted() {
    this.initThreeJs();
    this.loadModel();
    this.animate();
  },
  beforeDestroy() {
    if (this.renderer) {
      this.renderer.dispose();
    }
  },
  methods: {
    initThreeJs() {
      // 初始化场景
      this.scene = new THREE.Scene();
      // this.scene.background = new THREE.Color(0xffffff); // 白色背景
      // 设置相机
      this.camera = new THREE.PerspectiveCamera(75, this.width / this.height, 0.1, 5000);
      // 设置相机初始位置
      this.camera.position.set(0, 0.3, 1); // x = 0, y = 5, z = 10,可以根据需要调整这些值

      // 设置相机旋转角度(以弧度为单位)
      this.camera.rotation.x = THREE.MathUtils.degToRad(-30); // 绕x轴旋转 -30度
      this.camera.rotation.y = THREE.MathUtils.degToRad(0); // 绕y轴旋转 0度
      this.camera.rotation.z = THREE.MathUtils.degToRad(0); // 绕z轴旋转 0度

      // 创建渲染器
      this.renderer = new THREE.WebGLRenderer();
      this.renderer.setSize(this.width, this.height);
      this.$refs.container.appendChild(this.renderer.domElement);

      // 添加灯光
      const ambientLight = new THREE.AmbientLight(0xffffff, 1);
      this.scene.add(ambientLight);

      const pointLight = new THREE.PointLight(0xffffff, 1);
      pointLight.position.set(10, 10, 10);
      this.scene.add(pointLight);

      // 添加 OrbitControls
      this.controls = new OrbitControls(this.camera, this.renderer.domElement);
      this.controls.enableDamping = true; // 启用阻尼
      this.controls.dampingFactor = 0.25; // 阻尼因子,越大越慢
      this.controls.enableZoom = true; // 启用缩放
    },
    loadModel() {
      const loader = new GLTFLoader();
      loader.load(
          '/obj.gltf', // 模型的路径,支持http请求
          (gltf) => {
            this.model = gltf.scene;
            this.scene.add(this.model);
          },
          undefined,
          (error) => {
            console.error('模型加载错误:', error);
          }
      );
    },
    animate() {
      requestAnimationFrame(this.animate);
      if (this.model) {
        this.model.rotation.y += 0.01; // 让模型旋转
      }
      this.renderer.render(this.scene, this.camera);
    },
  }
};
</script>

<style scoped lang="scss">

</style>

四、Gitee源码

码云地址:Vue2+Three.js加载并展示一个三维模型 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

黄团团

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值