86 lines
2.2 KiB
Vue
86 lines
2.2 KiB
Vue
<script setup lang="ts">
|
|
import { getResponsiveClass, getResponsiveSrc } from '#layers/utils/dataUtil'
|
|
import type { PageDataResourceGroup } from '#layers/types/api/pageData'
|
|
|
|
interface Props {
|
|
resourcesData: PageDataResourceGroup
|
|
gradient?: boolean
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
gradient: false,
|
|
})
|
|
|
|
const resPath = computed(() => {
|
|
return props.resourcesData?.res_path
|
|
})
|
|
const bgStyles = computed(() => {
|
|
return getResponsiveSrc(resPath.value, {
|
|
resourcesType: 'bg',
|
|
})
|
|
})
|
|
const videoSrc = computed(() => {
|
|
return getResponsiveSrc(resPath.value, {
|
|
resourcesType: 'video',
|
|
})
|
|
})
|
|
const posterSrc = computed(() => {
|
|
return getResponsiveSrc(resPath.value)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="absolute inset-0 w-full h-full">
|
|
<!-- 이미지 타입-->
|
|
<div
|
|
v-if="resourcesData?.group_type === 'image'"
|
|
class="w-full h-full bg-cover bg-center bg-no-repeat"
|
|
:class="getResponsiveClass()"
|
|
:style="bgStyles"
|
|
/>
|
|
|
|
<!-- 비디오 타입 -->
|
|
<template v-else-if="resourcesData?.group_type === 'video'">
|
|
<!-- 모바일 비디오 (md 미만) -->
|
|
<video
|
|
v-if="videoSrc?.mobileSrc"
|
|
class="w-full h-full object-cover md:hidden"
|
|
:poster="posterSrc?.mobileSrc"
|
|
autoplay
|
|
muted
|
|
loop
|
|
playsinline
|
|
>
|
|
<source :src="videoSrc.mobileSrc" type="video/mp4" />
|
|
<source :src="videoSrc.mobileSrc" type="video/webm" />
|
|
</video>
|
|
<!-- PC 비디오 (md 이상) -->
|
|
<video
|
|
v-if="videoSrc?.pcSrc"
|
|
class="w-full h-full object-cover hidden md:block"
|
|
:poster="posterSrc?.pcSrc"
|
|
autoplay
|
|
muted
|
|
loop
|
|
playsinline
|
|
>
|
|
<source :src="videoSrc.pcSrc" type="video/mp4" />
|
|
<source :src="videoSrc.pcSrc" type="video/webm" />
|
|
</video>
|
|
</template>
|
|
|
|
<!-- 그라디언트 오버레이 (gradient가 true일 때만) -->
|
|
<div
|
|
v-if="props.gradient"
|
|
class="absolute bottom-0 left-0 right-0 h-[342px] md:h-[720px] bg-gradient-to-b from-[#100d0f]/0 to-[#100d0f]"
|
|
style="
|
|
background: linear-gradient(
|
|
180deg,
|
|
rgba(16, 13, 15, 0) 0%,
|
|
#100d0f 30%
|
|
);
|
|
"
|
|
/>
|
|
</div>
|
|
</template>
|