123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- <template>
- <div class="show-case-container" ref="containerRef">
- <audio v-if="audio" ref="audioSound" :src="audio"></audio>
- <div class="show-case" v-if="isModel">
- <iframe ref="iframeRef" frameborder="0" :src="iframeURL"></iframe>
- </div>
- <div class="show-case" v-if="isVideo">
- <video
- ref="videoRef"
- :src="video"
- autoplay
- playsinline
- @ended="isVideoPlaying = false"
- @playing="isVideoPlaying = true"
- @pause="isVideoPlaying = false"
- ></video>
- <div class="video-icon">
- <svg
- class="play-icon icon"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- viewBox="0 0 1024 1024"
- @click="videoRef.play()"
- v-if="!isVideoPlaying"
- >
- <path
- d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448s448-200.6 448-448S759.4 64 512 64zm144.1 454.9L437.7 677.8a8.02 8.02 0 0 1-12.7-6.5V353.7a8 8 0 0 1 12.7-6.5L656.1 506a7.9 7.9 0 0 1 0 12.9z"
- fill="currentColor"
- ></path>
- </svg>
- <svg
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- viewBox="0 0 28 28"
- v-if="isVideoPlaying"
- class="stop-icon icon"
- @click="videoRef.pause()"
- >
- <g fill="none">
- <path
- d="M14 26c6.627 0 12-5.373 12-12S20.627 2 14 2S2 7.373 2 14s5.373 12 12 12zM10.5 9h7a1.5 1.5 0 0 1 1.5 1.5v7a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 9 17.5v-7A1.5 1.5 0 0 1 10.5 9z"
- fill="currentColor"
- ></path>
- </g>
- </svg>
- </div>
- </div>
- <div class="show-case" v-if="isGallery">
- <n-carousel
- :draggable="gallery.length > 1"
- :show-dots="false"
- :show-arrow="gallery.length > 1"
- @update:current-index="handleSlideUpdate"
- >
- <template v-for="img in gallery">
- <img class="carousel-img" :src="img" />
- </template>
- <template #arrow="{ prev, next }" v-if="gallery.length > 1">
- <div class="custom-arrow">
- <img class="btn-img" src="@/assets/arrow-left.png" @click="prev" />
- <img class="btn-img" src="@/assets/arrow-right.png" @click="next" />
- </div>
- </template>
- </n-carousel>
- </div>
- <div class="tools">
- <n-space class="group-type" :size="25">
- <n-button
- v-if="model"
- class="model btn"
- :class="{
- active: isModel,
- }"
- round
- @click="handleSwitchType('model')"
- >
- <img src="@/assets/icon_model.png" /> 模型
- </n-button>
- <n-button
- v-if="video"
- class="video btn"
- :class="{
- active: isVideo,
- }"
- round
- @click="handleSwitchType('video')"
- ><img src="@/assets/icon_video.png" />视频</n-button
- >
- <n-button
- v-if="gallery.length > 0"
- class="gallery btn"
- :class="{
- active: isGallery,
- }"
- round
- @click="handleSwitchType('gallery')"
- >
- <img src="@/assets/icon_photo.png" />图片
- <span v-if="gallery.length > 0">{{
- `${currentSlideIndex}/${gallery.length}`
- }}</span></n-button
- >
- </n-space>
- <div class="actions">
- <div v-if="isModel && model">
- <img src="@/assets/zoom-in.png" @click="handleFullScreen" />
- <img src="@/assets/zoom-out.png" @click="handleExitFullScreen" />
- <img src="@/assets/reload.png" @click="reloadIframe" />
- </div>
- <div v-if="isGallery && audio">
- <img src="@/assets/audio-muted.png" @click="audioPause" />
- <img src="@/assets/audio-unmuted.png" @click="audioPlay" />
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, computed, unref, watchEffect } from "vue";
- import { useFullscreen } from "@vueuse/core";
- defineOptions({
- name: "show-case",
- });
- const props = defineProps({
- active: {
- type: String,
- default: () => "",
- },
- model: {
- type: String,
- default: () => "",
- },
- video: {
- type: String,
- default: () => "",
- },
- audio: {
- type: String,
- default: () => "",
- },
- gallery: {
- type: Array,
- default: () => [""],
- },
- });
- const iframeRef = ref();
- const containerRef = ref();
- const type = ref("model");
- const defaultType = ref(["model", "video", "audio", "gallery"]);
- const videoRef = ref();
- const modelUrl = import.meta.env.VITE_MODEL_URL;
- const iframeURL = computed(() => modelUrl + props.model);
- const isModel = computed(() => type.value === "model");
- const isVideo = computed(() => type.value === "video");
- // const isAudio = computed(() => type.value === "audio");
- const isGallery = computed(() => type.value === "gallery");
- const domain = ref(import.meta.env.VITE_DOMAIN_URL);
- const audioSound = ref("");
- const currentSlideIndex = ref(1);
- const { isFullscreen, enter, exit } = useFullscreen(containerRef);
- const isVideoPlaying = ref(false);
- const handleSwitchType = (value) => {
- if (defaultType.value.includes(value)) {
- type.value = value;
- if (value === "gallery") {
- audioPlay();
- } else {
- audioPause();
- }
- } else {
- type.value = "model";
- }
- };
- const audioPlay = () => {
- audioSound.value && audioSound.value.play();
- };
- const audioPause = () => {
- audioSound.value && audioSound.value.pause();
- };
- const handleSlideUpdate = (index) => {
- if (unref(props.gallery).length > 1) {
- currentSlideIndex.value = index + 1;
- }
- };
- const reloadIframe = () => {
- if (iframeRef.value) {
- try {
- iframeRef.value.src += "";
- } catch (error) {}
- }
- };
- const handleFullScreen = () => {
- enter();
- };
- const handleExitFullScreen = () => {
- exit();
- };
- watchEffect(() => {
- if (props.active) {
- let tempType = "";
- if (props.active === "img") {
- tempType = "gallery";
- } else {
- tempType = props.active;
- }
- handleSwitchType(tempType);
- }
- });
- </script>
- <style>
- .show-case-container {
- --show-case-width: 66.8125rem;
- --show-case-height: 34.1875rem;
- --show-case-border-radius: 0.625rem;
- --show-case-background: #c1b2b2;
- --show-case-tools-padding: 1rem;
- --show-case-btn-font-size: 16px;
- --show-case-btn-model-bg: url("/img/show_case_m_bg.png");
- --show-case-btn-model-bg-active: url("/img/show_case_m_bg_active.png");
- --show-case-btn-video-bg: url("/img/show_case_v_bg.png");
- --show-case-btn-video-bg-active: url("/img/show_case_v_bg_active.png");
- --show-case-btn-gallery-bg: url("/img/show_case_p_bg.png");
- --show-case-btn-gallery-bg-active: url("/img/show_case_p_bg_active.png");
- }
- </style>
- <style lang="scss" scoped>
- .show-case-container {
- width: var(--show-case-width);
- height: var(--show-case-height);
- position: relative;
- background-color: var(--show-case-background);
- border-radius: var(--show-case-border-radius);
- .show-case {
- width: 100%;
- height: 100%;
- iframe,
- video,
- :deep(.n-carousel) {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- :deep(.n-carousel) {
- .carousel-img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .custom-arrow {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- // background: red;
- z-index: 111;
- pointer-events: none;
- display: inline-flex;
- justify-content: space-between;
- flex-direction: row;
- align-items: center;
- .btn-img {
- width: 3.8125rem;
- height: 3.8125rem;
- pointer-events: all;
- cursor: pointer;
- margin: 0 1.25rem;
- }
- }
- }
- .video-icon {
- width: 100%;
- height: 100%;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- opacity: 0;
- transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
- &:hover {
- opacity: 1;
- }
- top: 0;
- left: 0;
- svg {
- width: 80px;
- height: 80px;
- color: #666;
- opacity: 0.9;
- pointer-events: auto;
- cursor: pointer;
- }
- }
- }
- .tools {
- display: inline-flex;
- position: absolute;
- height: 2.25rem;
- bottom: 1.25rem;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- width: calc(100% - var(--show-case-tools-padding) * 2);
- padding: 0 var(--show-case-tools-padding);
- pointer-events: none;
- .actions {
- display: inline-flex;
- align-items: center;
- img {
- height: 2.5rem;
- width: auto;
- margin: 0 0.3125rem;
- cursor: pointer;
- pointer-events: all;
- }
- }
- .group-type {
- :deep(.n-button) {
- --n-border: none !important;
- --n-border-hover: none !important;
- --n-border-pressed: none !important;
- --n-border-focus: none !important;
- --n-ripple-color: none !important;
- transition: none;
- background-color: transparent;
- color: white;
- pointer-events: all;
- font-size: var(--show-case-btn-font-size);
- // min-width: 80px;
- // padding: 10px 40px;
- img {
- height: 1.0625rem;
- margin-right: 0.3125rem;
- width: auto;
- }
- &.btn {
- background-size: contain;
- background-repeat: no-repeat;
- background-position: top center;
- border: none;
- }
- &.model {
- background-image: var(--show-case-btn-model-bg);
- }
- &.video {
- background-image: var(--show-case-btn-video-bg);
- }
- &.gallery {
- background-image: var(--show-case-btn-gallery-bg);
- }
- &.active {
- &.model {
- background-image: var(--show-case-btn-model-bg-active);
- }
- &.video {
- background-image: var(--show-case-btn-video-bg-active);
- }
- &.gallery {
- background-image: var(--show-case-btn-gallery-bg-active);
- }
- }
- }
- }
- }
- }
- </style>
|