123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609 |
- <script setup>
- import { ref, computed, nextTick, onMounted, watch } from "vue"
- import { useRouter, useRoute } from "vue-router"
- import { useStore } from "vuex"
- import Startup from "@/views/StartupView.vue"
- import useRollFu from "../rollFu.js"
- import HotspotDetail3 from "@/views/HotspotDetail3.vue"
- import HotspotDetail1 from "@/views/HotspotDetail1.vue"
- import PaintingDetail from '@/views/PaintingDetail.vue'
- import DetailImg from '@/assets/images/icon_home_detail-min.png'
- import DetailImgAc from '@/assets/images/icon_home_detail-min-ac.png'
- import AuthorImg from '@/assets/images/icon_home_author-min.png'
- import AuthorImgAc from '@/assets/images/icon_home_author-min-ac.png'
- import useSizeAdapt from "@/useFunctions/useSizeAdapt"
- const store = useStore()
- const router = useRouter()
- const route = useRoute()
- const { handleScrollThrottle } = useRollFu()
- const isShowOperationTip = ref(true)
- const isShowHotspotDetail1 = ref(false)
- const isShowHotspotDetail3 = ref(false)
- const curPageIndex = ref(0)
- const longDescText = computed(() => {
- return curPageIndex.value == 1
- ? configText.homepagePaintingDetailDescStem
- : curPageIndex.value == 2
- ? configText.homepagePaintingDetailDescLeaf
- : curPageIndex.value == 3
- ? configText.homepagePaintingDetailDescStone
- : curPageIndex.value == 4
- ? configText.homepagePaintingSummary
- : ""
- })
- const isShowVideoFadeToNextPage = ref(false)
- const isShowSkip = ref(false)
- const videoFadeToNextPageEl = ref(null)
- const paintingState = ref('1')
- const isShowPaintingDetial = ref(false)
- const longTitleText = computed(() => {
- return curPageIndex.value == 1
- ? "三竿修竹"
- : curPageIndex.value == 2
- ? "竹叶"
- : curPageIndex.value == 3
- ? "卧石、枯树和灌木"
- : ""
- })
- const isShowHotspot = ref(true)
- watch(curPageIndex, (val) => {
- if (val == 0 || val == 4) {
- setTimeout(() => {
- isShowHotspot.value = true
- }, 1500)
- }
- isShowHotspot.value = false
- })
- // const isShowHotspot = computed(setTimeout(()=> {
- // return curPageIndex.value == 0 || curPageIndex.value == 4
- // }, 1500))
- // 滑动逻辑
- const scrollFu = (event, val) => {
- console.log('在滚动', val)
- if (val == -1) {
- // 上滚
- // console.log("上滚")
- curPageIndex.value =
- curPageIndex.value > 0 ? curPageIndex.value - 1 : curPageIndex.value
- } else if (val == 1) {
- // 下滚
- isShowOperationTip.value = false
- if (curPageIndex.value < 4) {
- curPageIndex.value = curPageIndex.value + 1
- } else if (curPageIndex.value == 4) {
- // 播放视频
- isShowVideoFadeToNextPage.value = true
- nextTick(() => {
- videoFadeToNextPageEl.value.play()
- })
- setTimeout(() => {
- isShowSkip.value = true
- }, 2000)
- }
- }
- }
- const hoverIndex = ref(null)
- const {
- windowSizeInCssForRef,
- windowSizeWhenDesignForRef,
- } = useSizeAdapt()
- onMounted(() => {
- if (route.query.page) {
- curPageIndex.value = parseInt(route.query.page)
- }
- })
- </script>
- <template>
- <div class="home">
- <!-- 过渡到更多详情页视频 -->
- <video
- v-show="isShowVideoFadeToNextPage"
- ref="videoFadeToNextPageEl"
- muted
- class="fade-to-next-page"
- src="@/assets/videos/fade-from-home-to-more-content.mp4"
- @ended="
- router.push({
- name: 'MoreContent',
- })
- "
- />
- <Transition name="fade-in">
- <BtnSkip
- v-if="isShowSkip"
- @click="
- router.push({
- name: 'MoreContent',
- })
- "
- />
- </Transition>
- <!-- 滚动区域 -->
- <div
- ref="scroller"
- class="scroller"
- @wheel="($event) => handleScrollThrottle($event, ($event) => scrollFu($event,-1),($event) => scrollFu($event,1))"
- >
- <div class="scroller-content" />
- </div>
- <!-- 背景 -->
- <div class="bg-mask" />
- <!-- 开场动画 -->
- <Transition name="fade-out">
- <Startup
- v-if="!store.state.haveShownStartup"
- class="startup"
- />
- <!-- <Startup
- v-if="true"
- class="startup"
- /> -->
- </Transition>
- <!-- 首页标题 -->
- <div
- class="title-wrap"
- :style="{
- opacity: curPageIndex == 0 ? 1 : 0,
- }"
- >
- <img
- class="title"
- src="@/assets/images/home-title.png"
- alt=""
- draggable="false"
- >
- <div class="sub-text">
- <!-- 南京博物院<br> -->
- 绢本 墨笔<br>
- 元 李衎<br>
- </div>
- </div>
- <!-- 作品、作者简介 -->
- <div
- ref="longDesc"
- class="long-desc"
- :class="{ 'long-desc-ac': curPageIndex == 0 || curPageIndex == 4 }"
- :style="{ opacity: curPageIndex == 0 || curPageIndex == 4 ? 1 : 0 }"
- >
- <div
- class="page2-box"
- @mouseenter="hoverIndex = 1"
- @mouseleave="hoverIndex = null"
- @click="
- // () => {
- // router.push('/painting-detail?idx=home');
- // }
- isShowPaintingDetial =true,
- paintingState = '1'
- "
- >
- <img
- :src="hoverIndex == 1 ? DetailImgAc : DetailImg"
- alt=""
- >
- <div>作品简介</div>
- </div>
- <div
- class="page2-box"
- style="margin-top: 10px"
- @mouseenter="hoverIndex = 2"
- @mouseleave="hoverIndex = null"
- @click="
- // () => {
- // router.push('/painting-detail?idx=home&state=2');
- // }
- isShowPaintingDetial =true,
- paintingState = '2'
- "
- >
- <img
- :src="hoverIndex == 2 ? AuthorImgAc : AuthorImg"
- alt=""
- >
- <div>作者简介</div>
- </div>
- </div>
- <!-- 画作 -->
- <div
- class="painting-wrap"
- :class="{
- 'painting-wrap2': curPageIndex == 1 || curPageIndex == 3,
- 'painting-wrap3': curPageIndex == 2,
- }"
- @click="
- () => {
- isShowPaintingDetial = true
- }
- "
- >
- <img
- class="painting-border"
- src="@/assets/images/painting-border-new.png"
- alt=""
- draggable="false"
- >
- <img
- class="painting-stem"
- src="@/assets/images/home-painting1.jpg"
- alt=""
- draggable="false"
- >
- <img
- class="painting-stem"
- src="@/assets/images/home-painting2.jpg"
- alt=""
- draggable="false"
- >
- <img
- :style="{ opacity: curPageIndex == 1 ? 1 : 0, zIndex: 3 }"
- class="painting-stem"
- src="@/assets/images/home-painting-stem.jpg"
- alt=""
- >
- <img
- class="painting-stem"
- src="@/assets/images/img_zhuye-min2.png"
- alt=""
- :style="{
- opacity: curPageIndex == 2 ? 1 : 0,
- zIndex: 2,
- }"
- draggable="false"
- >
- <img
- class="painting-stem"
- src="@/assets/images/img_stone_all-min.png"
- :style="{
- opacity: curPageIndex == 3 ? 1 : 0,
- zIndex: 2,
- }"
- alt=""
- draggable="false"
- >
- </div>
- <!-- 热点层1 -->
- <div
- v-show="isShowHotspot"
- class="hotspot-wrap"
- >
- <HotspotForHomepage
- class="hotspot-1"
- @click="isShowHotspotDetail1 = true"
- />
- <HotspotForHomepage
- class="hotspot-3"
- @click="isShowHotspotDetail3 = true"
- />
- </div>
- <!-- 轴/卷/册热点详情 -->
- <Transition name="fade-in-out">
- <HotspotDetail3
- v-if="isShowHotspotDetail3"
- class="hotspot-detail"
- @close="isShowHotspotDetail3 = false"
- />
- </Transition>
- <!-- 材质热点详情 -->
- <Transition name="fade-in-out">
- <HotspotDetail1
- v-if="isShowHotspotDetail1"
- class="hotspot-detail"
- @close="isShowHotspotDetail1 = false"
- />
- </Transition>
- <!-- 滑动提示 -->
- <OperationTip
- v-show="curPageIndex == 0"
- class="operation-tip"
- text="向下滑动"
- :is-show="isShowOperationTip"
- />
- <!-- 画作详情 -->
- <PaintingDetail
- v-if="isShowPaintingDetial"
- class="painting-detail"
- :idx="'home'"
- :state="paintingState"
- @close="isShowPaintingDetial = false"
- />
- <!-- 文字介绍 -->
- <div
- class="text-box"
- :style="{
- opacity:
- curPageIndex == 1 ||
- curPageIndex == 2 ||
- curPageIndex == 3 ||
- curPageIndex == 4
- ? 1
- : 0,
- left: curPageIndex == 4 ? '4%':''
- }"
- >
- <div class="text-box-title">
- {{ longTitleText }}
- </div>
- <!-- <div v-if="curPageIndex == 2">
- 竹子的画法
- </div> -->
- <div
- class="text-box-desc"
- v-html="longDescText"
- />
- </div>
- </div>
- </template>
- <style lang="less" scoped>
- .home {
- width: 100%;
- height: 100%;
- > video.fade-to-next-page {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- object-fit: cover;
- z-index: 20;
- }
- > .scroller {
- width: 100vw;
- max-height: 100vh;
- overflow: auto;
- background: rgba(255, 255, 0, 0);
- position: absolute;
- top: 0;
- z-index: 10;
- opacity: 0.001;
- .scroller-content {
- width: 100%;
- height: 200vh;
- }
- }
- > .bg-mask {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- // background: rgba(60, 89, 71, 0.65);
- background: url(@/assets/images/bg-mask.png);
- background-size: 100% 100%;
- }
- > .startup {
- z-index: 20;
- }
- > .title-wrap {
- position: absolute;
- right: 25%;
- top: 50%;
- transform: translateY(-50%);
- width: 100px;
- height: 45%;
- z-index: 5;
- transition: opacity 1.5s ease;
- > img.title {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- > .sub-text {
- position: absolute;
- left: 110%;
- top: 46%;
- transform: translateY(-50%);
- writing-mode: vertical-lr;
- font-family: KaiTi;
- font-weight: 400;
- font-size: 20px;
- color: #ffffff;
- line-height: 30px;
- white-space: pre;
- letter-spacing: 0.2em;
- text-align: center;
- }
- }
- > .long-desc {
- position: absolute;
- bottom: 30px;
- right: 30px;
- color: white;
- overflow: hidden;
- font-family: KaiTi;
- color: #ffffff;
- animation: none;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- z-index: 10;
- transition: opacity 1.5s ease;
- > .page2-box {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- > img {
- width: 75%;
- margin-bottom: 10px;
- }
- > div {
- font-size: calc(
- 20 / v-bind("windowSizeWhenDesignForRef") *
- v-bind("windowSizeInCssForRef")
- );
- font-family: KaiTi;
- }
- }
- }
- > .painting-wrap {
- position: absolute;
- left: 50%;
- top: 50%;
- width: calc(99vh / 937 * 552);
- height: 99vh;
- transform: translate(-50%, -50%);
- z-index: 1;
- transition: top 1.5s ease, left 1.5s ease, width 1.5s ease, height 1.5s ease;
- > .painting-border {
- width: 100%;
- height: 100%;
- position: absolute;
- }
- > .painting-stem {
- width: 80%;
- height: 74%;
- // height: calc(
- // 671 / v-bind("windowSizeWhenDesignForRef") *
- // v-bind("windowSizeInCssForRef")
- // );
- position: absolute;
- left: 50%;
- transform: translate(-50%, 24%);
- transition: opacity 1.5s ease;
- }
- }
- > .painting-wrap2 {
- left: 63%;
- top: 45%;
- width: calc(125vh / 937 * 552);
- height: calc(125vh);
- }
- > .painting-wrap3 {
- left: 60%;
- top: -20%;
- width: calc(600vh / 937 * 552);
- height: 600vh;
- }
- > .hotspot-wrap {
- position: absolute;
- left: 50%;
- top: 50%;
- width: calc(99vh / 937 * 552);
- height: 99vh;
- transform: translate(-50%, -50%);
- pointer-events: none;
- will-change: transform;
- backface-visibility: hidden;
- z-index: 10;
- transition: opacity 0.5s ease;
- & > div {
- z-index: 100;
- transition: all 1.5s ease-in-out;
- cursor: pointer;
- // transition: all 1.5s ease-in-out;
- }
- > .hotspot-1 {
- position: absolute;
- top: 11vh;
- right: 0;
- pointer-events: initial;
- }
- // > .hotspot-2 {
- // position: absolute;
- // left: 60px;
- // top: 60px;
- // pointer-events: initial;
- // }
- > .hotspot-3 {
- position: absolute;
- bottom: 0vh;
- right: -1vh;
- pointer-events: initial;
- }
- }
- > .hotspot-detail {
- z-index: 21;
- }
- > .operation-tip {
- position: absolute;
- right: 30px;
- transform: translateX(-50%);
- top: 50%;
- transform: translateY(-50%);
- }
- >.painting-detail{
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 30;
- }
- > .text-box {
- max-width: 450px;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- left: 10%;
- color: #ffffff;
- font-size: 25px;
- line-height: 38px;
- font-family: "KaiTi";
- transition: opacity 1.5s ease;
- z-index: 10;
- transition: left 1.5s ease;
- .text-box-title {
- font-size: 42px;
- line-height: 48px;
- margin-bottom: 30px;
- }
- .text-box-desc{
- text-indent: 2em;
- }
- }
- }
- </style>
|