detail.vue 883 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div style="width: 100%; height: calc(100vh - 200px); display: flex; justify-content: center; align-items: center">
  3. <a-spin :spinning="loading" />
  4. <div id="fengmen3D" v-show="!loading"> </div>
  5. </div>
  6. </template>
  7. <script setup lang="ts">
  8. import { ref, onMounted, onUnmounted } from 'vue';
  9. import UseThree from '/@/hooks/core/useThree';
  10. import * as THREE from 'three';
  11. import gsap from 'gsap';
  12. const loading = ref(false);
  13. let model;
  14. onMounted(() => {
  15. model = new UseThree('#fengmen3D');
  16. // model.setEnvMap('test');
  17. // model.setCustomMaterial = setCustomMaterial
  18. loading.value = true;
  19. model.setModel('9f-processed').then(() => {
  20. // 模型加载成功
  21. loading.value = false;
  22. });
  23. });
  24. onUnmounted(() => {
  25. if (model) {
  26. model.deleteModal();
  27. }
  28. });
  29. </script>
  30. <style scoped lang="scss"></style>