healthPPT.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <div class="ppt-main" ref="healthPptMain" @click="fullscreen">
  3. <div v-for="(item, index) in list" :ref="el => (imgRefs[index] = el)" class="w-screen h-screen animate__animated">
  4. <el-image
  5. :key="index"
  6. :src="item"
  7. class="w-full h-full select-none animate__animated"
  8. alt=""
  9. mode="contain"
  10. fit="contain"
  11. />
  12. </div>
  13. </div>
  14. </template>
  15. <script setup>
  16. import { request } from "@/utils";
  17. import { nextTick } from "vue";
  18. import {
  19. reactive,
  20. computed,
  21. ref,
  22. provide,
  23. onMounted,
  24. onBeforeUnmount
  25. } from "vue";
  26. import { useRouter, useRoute } from "vue-router";
  27. const [route, router] = [useRoute(), useRouter()];
  28. const healthPptMain = ref()
  29. const imgRefs = ref([]);
  30. const pptNode = ref();
  31. const list = ref([]);
  32. const getPPTNode = async () => {
  33. const { data } = await request.get(`/graphService/open/node/paginate`, {
  34. params: {
  35. page: 1,
  36. pageSize: 1,
  37. pagesize: 1,
  38. tag: "用户ID",
  39. name: route.query.archivesId
  40. }
  41. });
  42. if (data.list[0]) {
  43. pptNode.value = data.list[0];
  44. if (pptNode.value.properties) {
  45. list.value = pptNode.value.properties["PPT地址"] || [];
  46. imgRefs.value = Array(list.value.length).fill({});
  47. nextTick(() => {
  48. imgRefs.value.forEach(img => {
  49. observer.observe(img);
  50. });
  51. });
  52. }
  53. }
  54. };
  55. getPPTNode();
  56. const observer = new IntersectionObserver(entries => {
  57. console.log(entries);
  58. entries.forEach(entry => {
  59. console.log(entry);
  60. if (entry.isIntersecting) {
  61. entry.target.classList.add("animate__fadeIn");
  62. } else {
  63. // entry.target.classList.remove("animate__fadeInUp");
  64. }
  65. });
  66. });
  67. onMounted(() => {
  68. // setTimeout(() => {
  69. // document.body.requestFullscreen()
  70. // }, 10);
  71. fullscreen()
  72. });
  73. onBeforeUnmount(() => {
  74. imgRefs.value.forEach(img => {
  75. observer.unobserve(img);
  76. });
  77. });
  78. const fullscreen = () => {
  79. document.body.requestFullscreen();
  80. }
  81. window.addEventListener('message', (event) => {
  82. if (event.data === 'goFullscreen') {
  83. healthPptMain.value.click();
  84. }
  85. });
  86. </script>
  87. <style lang="scss" scoped>
  88. body {
  89. scroll-behavior: smooth;
  90. }
  91. .ppt-main {
  92. overflow-x: hidden;
  93. overflow-y: scroll; /* overflow 为 scroll,来把滚动条设置到 main 元素上 */
  94. height: 100vh;
  95. scroll-snap-type: y mandatory; /* scroll-snap-type 需要两个值,第一个值为滚动贴合的方向,y 表示纵向滚动贴合,第二个值为贴合方式,mandatory 表示强制滚动,用户只要一滚动鼠标,下一屏内容就直接滚动上来进行贴合。 */
  96. // scroll-behavior: smooth; /* 添加平滑滚动效果 */
  97. div {
  98. place-items: center;
  99. scroll-snap-align: center;
  100. }
  101. }
  102. </style>