123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871 |
- <template>
- <div class="pano-view">
- <div id="pano" />
- <button
- class="return-home"
- @click="router.push({
- name: 'HomeView',
- })"
- />
- <CameraDesc
- v-if="isShowCameraDesc"
- class="camera-desc"
- @close="isShowCameraDesc = false"
- />
- <CharacterDesc
- v-if="isShowCharacterDesc"
- class="character-desc"
- @close="isShowCharacterDesc = false"
- />
- <div
- class="character-wrap"
- draggable="false"
- >
- <button
- class="name"
- @click="isShowCharacterDesc = true"
- >
- <span>趙孟頫</span>
- </button>
- <div
- class="character-frames-wrapper"
- @click="onClickCharacter"
- >
- <img
- v-show="animationType === 1"
- class="default-frames"
- src="@/assets/images/A1-min.png"
- alt=""
- draggable="false"
- >
- <img
- v-show="animationType === 2"
- class="frames frames-2"
- :class="{
- animating: isCharacterSpecialMoving,
- state1: isCharacterSpecialMoving === 0,
- state2: isCharacterSpecialMoving === 1,
- }"
- src="@/assets/images/A2-min.png"
- alt=""
- draggable="false"
- >
- <img
- v-show="animationType === 3"
- class="frames frames-3"
- :class="{
- animating: isCharacterSpecialMoving,
- state1: isCharacterSpecialMoving === 0,
- state2: isCharacterSpecialMoving === 1,
- }"
- src="@/assets/images/A3-min.png"
- alt=""
- draggable="false"
- >
- </div>
- <img
- class="btn-track"
- :src="require(`@/assets/images/people-btn-track-${sceneIdx + 1}.png`)"
- alt=""
- draggable="false"
- >
- <button
- class="one btn-on-track"
- @click="showingContentIdx = 1"
- >
- <span>{{ btnOnTrack1Name }}</span>
- </button>
- <button
- class="two btn-on-track"
- @click="showingContentIdx = 2"
- >
- <span>{{ btnOnTrack2Name }}</span>
- </button>
- <button
- class="three btn-on-track"
- @click="showingContentIdx = 3"
- >
- <span>{{ btnOnTrack3Name }}</span>
- </button>
- <button
- class="four btn-on-track"
- @click="router.push({
- name: 'RelicList',
- query: {
- sceneIdx: route.query.sceneIdx,
- cameraIdx: route.query.cameraIdx,
- }
- })"
- >
- <span>文物长卷</span>
- </button>
- </div>
- <div class="camera-list">
- <button
- v-for="(item, idx) in currentCameraList"
- :key="idx"
- class="camera-entry"
- :class="{
- active: idx === (mouseEnterCameraItemIdx === -1 ? cameraIdx : mouseEnterCameraItemIdx)
- }"
- @mouseenter="mouseEnterCameraItemIdx = idx"
- @mouseleave="mouseEnterCameraItemIdx = -1"
- @click="router.push({
- name: route.name,
- query:{
- sceneIdx: route.query.sceneIdx,
- cameraIdx: idx,
- }
- })"
- >
- <span>{{ item.name }}</span>
- <img
- class="bg-normal"
- :src="require(`@/assets/images/camera-list-item-bg-${sceneIdx + 1}.png`)"
- alt=""
- draggable="false"
- >
- <img
- class="bg-active"
- :src="require(`@/assets/images/camera-list-item-bg-active-${sceneIdx + 1}.png`)"
- alt=""
- draggable="false"
- >
- </button>
- <button
- class="next-camera"
- @click="onClickNextCamera"
- />
- </div>
- <CameraContent1
- v-if="showingContentIdx === 1"
- class="camera-content"
- @close="showingContentIdx = 0"
- />
- <CameraContent2
- v-if="showingContentIdx === 2"
- class="camera-content"
- @close="showingContentIdx = 0"
- />
- <CameraContent3
- v-if="showingContentIdx === 3"
- class="camera-content"
- @close="showingContentIdx = 0"
- />
- <transition name="fade-in-out-slow">
- <video
- v-show="isShowEffectVideo1"
- ref="sceneChangeEffectVideo1"
- class="sceneChangeEffectVideo"
- load="lazy"
- src="@/assets/videos/scene-change-effect-1.mp4"
- playsinline
- webkit-playsinline="true"
- x5-video-player-type="h5"
- @ended="onEffectVideoEnd"
- />
- </transition>
- <transition name="fade-in-out-slow">
- <video
- v-show="isShowEffectVideo2"
- ref="sceneChangeEffectVideo2"
- class="sceneChangeEffectVideo"
- src="@/assets/videos/scene-change-effect-2.mp4"
- playsinline
- webkit-playsinline="true"
- x5-video-player-type="h5"
- @ended="onEffectVideoEnd"
- />
- </transition>
- <transition name="cloud-top">
- <img
- v-if="isShowEffectCloud"
- class="cloud cloud-top"
- src="@/assets/images/cloud-top.png"
- alt=""
- draggable="false"
- >
- </transition>
- <transition name="cloud-left-bottom">
- <img
- v-if="isShowEffectCloud"
- class="cloud-left-bottom"
- src="@/assets/images/cloud-left-bottom.png"
- alt=""
- draggable="false"
- >
- </transition>
- <transition name="cloud-right-bottom">
- <img
- v-if="isShowEffectCloud"
- class="cloud-right-bottom"
- src="@/assets/images/cloud-right-bottom.png"
- alt=""
- draggable="false"
- >
- </transition>
- </div>
- </template>
- <script setup>
- import { ref, computed, watch, onMounted, nextTick } from "vue"
- import { useRoute, useRouter, onBeforeRouteUpdate } from "vue-router"
- import { useStore } from "vuex"
- import * as krfn from "@/libs/pano-core/index.js"
- import CameraDesc from '@/components/CameraDesc.vue'
- import CharacterDesc from '@/components/CharacterDesc.vue'
- import { defineAsyncComponent } from 'vue'
- import sceneTree from '/public/sceneTree.js'
- const btnReturnHomeImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/btn-return-home-${sceneIdx.value + 1}.png`) + ')'
- })
- const btnReturnHomeActiveImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/btn-return-home-active-${sceneIdx.value + 1}.png`) + ')'
- })
- const btnOnTrack1ImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-btn-${sceneIdx.value + 1}-${cameraIdx.value + 1}-1.png`) + ')'
- })
- const btnOnTrack1ActiveImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-btn-${sceneIdx.value + 1}-${cameraIdx.value + 1}-1-active.png`) + ')'
- })
- const btnOnTrack2ImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-btn-${sceneIdx.value + 1}-${cameraIdx.value + 1}-2.png`) + ')'
- })
- const btnOnTrack2ActiveImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-btn-${sceneIdx.value + 1}-${cameraIdx.value + 1}-2-active.png`) + ')'
- })
- const btnOnTrack3ImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-btn-${sceneIdx.value + 1}-${cameraIdx.value + 1}-3.png`) + ')'
- })
- const btnOnTrack3ActiveImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-btn-${sceneIdx.value + 1}-${cameraIdx.value + 1}-3-active.png`) + ')'
- })
- const btnOnTrack4ImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-btn-${sceneIdx.value + 1}-${cameraIdx.value + 1}-4.png`) + ')'
- })
- const btnOnTrack4ActiveImgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-btn-${sceneIdx.value + 1}-${cameraIdx.value + 1}-4-active.png`) + ')'
- })
- const cameraListBgUrl = computed(() => {
- return `url(${process.env.VUE_APP_CLI_MODE === 'dev' ? '' : '../'}` + require(`@/assets/images/camera-list-bg-${sceneIdx.value + 1}.png`) + ')'
- })
- const btnOnTrack1Name = computed(() => {
- return currentCameraList.value[cameraIdx.value].contentPageBtnNameList[0]
- })
- const btnOnTrack2Name = computed(() => {
- return currentCameraList.value[cameraIdx.value].contentPageBtnNameList[1]
- })
- const btnOnTrack3Name = computed(() => {
- return currentCameraList.value[cameraIdx.value].contentPageBtnNameList[2]
- })
- let CameraContent1 = defineAsyncComponent(() =>
- import(`@/components/CameraContent-${Number(route.query.sceneIdx) + 1}-${Number(route.query.cameraIdx) + 1}-1.vue`)
- )
- let CameraContent2 = defineAsyncComponent(() =>
- import(`@/components/CameraContent-${Number(route.query.sceneIdx) + 1}-${Number(route.query.cameraIdx) + 1}-2.vue`)
- )
- let CameraContent3 = defineAsyncComponent(() =>
- import(`@/components/CameraContent-${Number(route.query.sceneIdx) + 1}-${Number(route.query.cameraIdx) + 1}-3.vue`)
- )
- onBeforeRouteUpdate((to, from) => {
- console.log('to: ', to)
- if (to.name === route.name) {
- CameraContent1 = defineAsyncComponent(() =>
- import(`@/components/CameraContent-${Number(route.query.sceneIdx) + 1}-${Number(route.query.cameraIdx) + 1}-1.vue`)
- )
- CameraContent2 = defineAsyncComponent(() =>
- import(`@/components/CameraContent-${Number(route.query.sceneIdx) + 1}-${Number(route.query.cameraIdx) + 1}-2.vue`)
- )
- CameraContent3 = defineAsyncComponent(() =>
- import(`@/components/CameraContent-${Number(route.query.sceneIdx) + 1}-${Number(route.query.cameraIdx) + 1}-3.vue`)
- )
- }
- })
- const {
- windowSizeInCssForRef,
- windowSizeWhenDesignForRef,
- } = useSizeAdapt()
- const route = useRoute()
- const router = useRouter()
- const store = useStore()
- const sceneIdx = computed(() => {
- return Number(route.query.sceneIdx)
- })
- const cameraIdx = computed(() => {
- return Number(route.query.cameraIdx)
- })
- const isCharacterSpecialMoving = ref(0)
- const animationType = ref(1)
- const isShowCameraDesc = ref(false)
- const isShowCharacterDesc = ref(false)
- const showingContentIdx = ref(0)
- function onClickCharacter() {
- isShowCameraDesc.value = true
- if (!isCharacterSpecialMoving.value) {
- animationType.value = Math.floor(Math.random() * 2) + 2
- let duration = 0
- switch (animationType.value) {
- case 2:
- duration = 2000
- break
- case 3:
- duration = 1500
- break
- default:
- break
- }
- setTimeout(() => {
- isCharacterSpecialMoving.value = 1
- setTimeout(() => {
- isCharacterSpecialMoving.value = 0
- animationType.value = 1
- }, duration)
- }, 200)
- }
- }
- const currentCameraList = computed(() => {
- return sceneTree[sceneIdx.value].cameraList
- })
- const mouseEnterCameraItemIdx = ref(-1)
- const sceneChangeEffectVideo1 = ref(null)
- const sceneChangeEffectVideo2 = ref(null)
- const isShowEffectVideo1 = ref(false)
- const isShowEffectVideo2 = ref(false)
- const isShowEffectCloud = ref(false)
- function onClickNextCamera() {
- if (sceneIdx.value === 0) {
- isShowEffectVideo1.value = true
- setTimeout(() => {
- sceneChangeEffectVideo1.value.play()
- }, 1000)
- } else if (sceneIdx.value === 1) {
- isShowEffectVideo2.value = true
- setTimeout(() => {
- sceneChangeEffectVideo2.value.play()
- }, 1000)
- }
- }
- function onEffectVideoEnd() {
- isShowEffectCloud.value = true
- router.push({
- name: route.name,
- query: {
- sceneIdx: Number(route.query.sceneIdx) + 1,
- cameraIdx: 0,
- }
- })
- setTimeout(() => {
- isShowEffectVideo1.value = false
- isShowEffectVideo2.value = false
- }, 1000)
- setTimeout(() => {
- isShowEffectCloud.value = false
- }, 2500)
- }
- /**
- * 全景图
- */
- let __krfn = krfn.default
- window.__krfn = __krfn
- let scene = null
- function fixPanoData(panoData) {
- // 丢弃没有包含场景的二级分组
- let tmp = []
- panoData.scenes.forEach((item) => {
- panoData.catalogs.forEach((sub) => {
- if (item.category == sub.id) {
- if (tmp.indexOf(sub) < 0) {
- tmp.push(sub)
- }
- }
- })
- })
- tmp = utils.unique(tmp)
- panoData.catalogs = tmp
- // 丢弃没有包含二级分组的一级分组
- let rootmp = []
- tmp.forEach((item) => {
- panoData.catalogRoot.forEach((sub) => {
- sub.children = utils.unique(sub.children)
- if (sub.children.indexOf(item.id) > -1) {
- rootmp.push(sub)
- }
- })
- })
- rootmp = utils.unique(rootmp)
- // 一级分组按名称排序
- let sortArr = panoData.catalogRoot.map((item) => item.name)
- rootmp.sort((a, b) => {
- return sortArr.indexOf(a.name) - sortArr.indexOf(b.name)
- })
- // 各个一级分组的children去重,只留下有实际的二级分组相对应的那些children item。
- panoData.catalogRoot = rootmp.map((item) => {
- let temp = []
- item.children = utils.unique(item.children)
- item.children.forEach((sub) => {
- tmp.forEach((jj) => {
- if (jj.id == sub) {
- temp.push(sub)
- }
- })
- })
- return {
- ...item,
- children: temp,
- }
- })
- // 多余
- panoData.catalogs = tmp
- // 如果没有一级分组(一定也就没有二级分组)就创建一级分组和二级分组 有必要吗?
- let cid = "c_" + utils.randomWord(true, 8, 8)
- if (panoData.catalogRoot.length <= 0) {
- panoData.catalogRoot.push({
- id: "r_" + utils.randomWord(true, 8, 8),
- name: "全部场景",
- children: [cid],
- })
- }
- if (panoData.catalogs.length <= 0) {
- panoData.catalogs.push({
- id: cid,
- name: "默认二级分组",
- })
- }
- // 如果有初始场景,改为引用场景列表中对应的那个场景的js对象
- if (panoData.firstScene) {
- panoData.firstScene = panoData.scenes.find(
- (item) => item.sceneCode == panoData.firstScene.sceneCode
- )
- }
- }
- function loadScene(sceneIdx, cameraIdx) {
- scene = store.getters.catalogTopology[sceneIdx].children[0].children[cameraIdx]
- $("#pano").empty()
- window.vrInitFn = () => {
- // eslint-disable-next-line no-undef
- // $smallWaiting.hide()
- var krpano = document.getElementById("krpanoSWFObject")
- __krfn.utils.initHotspot(krpano, scene.someData, false)
- }
- window.vrViewFn = () => {
- try {
- let tmp = scene.initVisual || {}
- var krpano = document.getElementById("krpanoSWFObject")
- krpano.set("view.vlookat", tmp.vlookat || 0)
- krpano.set("view.hlookat", tmp.hlookat || 0)
- krpano.set("autorotate.enabled", Boolean(store.state.panoData.isAuto))
- } catch (error) {
- console.log(error)
- }
- }
- let settings = {
- "events[skin_events].onxmlcomplete": "js(window.vrViewFn());",
- "events[skin_events].onloadcomplete": "js(window.vrInitFn());",
- }
- // eslint-disable-next-line no-undef
- removepano("#pano")
- // eslint-disable-next-line no-undef
- embedpano({
- xml: `https://4dkk.4dage.com/720yun_fd_manage/${scene.sceneCode}/vtour/tour.xml`,
- swf: `${process.env.BASE_URL}static/template/tour.swf`, // 文件名tour.swf没看出来有啥作用,不写也行。但它的路径决定了 %SWFPATH% 的值。
- target: "pano",
- html5: "auto",
- mobilescale: 1,
- vars: settings,
- passQueryParameters: true,
- })
- }
- onMounted(() => {
- api.fetchPanoData('WK1730428603763576832').then((res) => {
- fixPanoData(res)
- store.commit('setPanoData', res)
- console.log('catalogTopology', store.getters.catalogTopology)
- loadScene(Number(sceneIdx.value), Number(cameraIdx.value))
- })
- })
- onBeforeRouteUpdate((to, from) => {
- console.log('to: ', to)
- if (to.name === route.name) {
- loadScene(Number(to.query.sceneIdx), Number(to.query.cameraIdx))
- }
- })
- </script>
- <style lang="less" scoped>
- *{
- user-select: none;
- }
- .pano-view{
- position: relative;
- height: 100%;
- >#pano{
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- >button.return-home{
- position: absolute;
- width: 77px;
- height: 77px;
- top: 43px;
- right: 51px;
- background-image: v-bind(btnReturnHomeImgUrl);
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- &:hover{
- background-image: v-bind(btnReturnHomeActiveImgUrl);
- }
- }
- >.camera-desc{
- z-index: 5;
- }
- >.character-desc{
- z-index: 5;
- }
- >.character-wrap{
- position: absolute;
- left: 40px;
- bottom: 0;
- width: 300px;
- height: 452px;
- >button.name{
- position: absolute;
- top: 50px;
- left: 0;
- transform: translateX(-50%);
- width: 36px;
- height: 178px;
- z-index: 3;
- font-size: 23px;
- font-family: Source Han Serif SC, Source Han Serif SC;
- font-weight: 400;
- color: #43310E;
- line-height: 27px;
- letter-spacing: 7px;
- writing-mode: vertical-lr;
- background-image: url(@/assets/images/people-name-bg.png);
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center center;
- >span{
- position: absolute;
- left: 45%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- }
- @frame-width: 256px;
- @frame-height: 512px;
- @duration-1: 3s;
- @frame-num-1: 72;
- @duration-2: 2s;
- @frame-num-2: 48;
- @duration-3: 1.5s;
- @frame-num-3: 36;
- >.character-frames-wrapper {
- position: absolute;
- left: 0;
- top: -60px;
- height: @frame-height;
- width: @frame-width;
- overflow: hidden;
- z-index: 1;
- cursor: pointer;
- >.default-frames{
- position: absolute;
- left: 0;
- height: 100%;
- animation-name: character-default-animation;
- animation-timing-function: steps(73, end);
- animation-duration: 3s;
- animation-iteration-count: infinite;
- }
- >.frames {
- position: absolute;
- height: 100%;
- transition-property: none;
- &.animating{
- transition-property: left;
- }
- &.state1 {
- left: 0;
- }
- }
- >.frames-2{
- transition-duration: @duration-2;
- transition-timing-function: steps(@frame-num-2 - 1, jump-end);
- &.state2 {
- left: calc(-100% * (@frame-num-2 - 1));
- }
- }
- >.frames-3{
- transition-duration: @duration-3;
- transition-timing-function: steps(@frame-num-3 - 1, jump-end);
- &.state2 {
- left: calc(-100% * (@frame-num-3 - 1));
- }
- }
- }
- >img.btn-track{
- position: absolute;
- width: 598px;
- height: 598px;
- left: -150px;
- bottom: -101px;
- }
- >button.btn-on-track{
- position: absolute;
- width: 78px;
- height: 78px;
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- text-align: left;
- z-index: 3;
- >span{
- margin-left: 120px;
- display: none;
- font-size: 23px;
- font-family: Source Han Serif SC, Source Han Serif SC;
- font-weight: 600;
- color: #FFF1BE;
- line-height: 27px;
- letter-spacing: 5px;
- }
- &:hover{
- width: 397px;
- height: 91px;
- transform: translate(-13px, -5px);
- >span{
- display: initial;
- }
- }
- }
- >button.one{
- left: 210px;
- top: -42px;
- background-image: v-bind(btnOnTrack1ImgUrl);
- &:hover{
- background-image: v-bind(btnOnTrack1ActiveImgUrl);
- }
- }
- >button.two{
- left: 336px;
- top: 62px;
- background-image: v-bind(btnOnTrack2ImgUrl);
- &:hover{
- background-image: v-bind(btnOnTrack2ActiveImgUrl);
- }
- }
- >button.three{
- left: 385px;
- top: 205px;
- background-image: v-bind(btnOnTrack3ImgUrl);
- &:hover{
- background-image: v-bind(btnOnTrack3ActiveImgUrl);
- }
- }
- >button.four{
- left: 352px;
- top: 353px;
- background-image: v-bind(btnOnTrack4ImgUrl);
- &:hover{
- background-image: v-bind(btnOnTrack4ActiveImgUrl);
- }
- }
- }
- >div.camera-list{
- position: absolute;
- bottom: 0;
- right: 0;
- width: calc(1346 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- height: calc(161 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- background-image: v-bind(cameraListBgUrl);
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- padding-top: calc(10 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- padding-right: calc(204 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- >button.camera-entry{
- width: calc(198 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- height: calc(41 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- font-size: calc(21 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- font-family: Source Han Serif SC, Source Han Serif SC;
- font-weight: 600;
- color: #FFED87;
- line-height: calc(25 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- letter-spacing: calc(9 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- position: relative;
- z-index: 0;
- >img.bg-normal{
- display: initial;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- width: calc(198/ v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- height: calc(55 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- z-index: -1;
- }
- >img.bg-active{
- display: none;
- position: absolute;
- left: 50%;
- top: 0%;
- transform: translate(-50%, -50%);
- width: calc(230 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- height: auto;
- z-index: -1;
- }
- }
- >button.camera-entry.active{
- font-size: calc(21 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- font-family: Source Han Serif SC, Source Han Serif SC;
- font-weight: 600;
- color: #794A00;
- line-height: calc(25 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- letter-spacing: calc(9 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- >img.bg-normal{
- display: none;
- }
- >img.bg-active{
- display: initial;
- }
- }
- >button.next-camera{
- position: absolute;
- top: calc(30 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- right: calc(45 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- width: calc(70 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- height: calc(100 / v-bind('windowSizeWhenDesignForRef') * v-bind('windowSizeInCssForRef'));
- }
- }
- >.camera-content{
- z-index: 10;
- }
- >video.sceneChangeEffectVideo{
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: black;
- z-index: 11;
- }
- .cloud-top{
- position: absolute;
- width: 100%;
- top: 0;
- left: 0;
- z-index: 12;
- }
- .cloud-top-enter-active {
- transition: all 1.5s;
- }
- .cloud-top-leave-active {
- transition: all 1.5s;
- pointer-events: none;
- }
- .cloud-top-enter-from {
- opacity: 0;
- translate: 0 -100%;
- }
- .cloud-top-leave-to {
- opacity: 0;
- top: -50%;
- translate: 0 -100%;
- }
- .cloud-left-bottom{
- position: absolute;
- left: 0;
- bottom: 0;
- height: 70%;
- z-index: 12;
- }
- .cloud-left-bottom-enter-active {
- transition: all 1.5s;
- }
- .cloud-left-bottom-leave-active {
- transition: all 1.5s;
- pointer-events: none;
- }
- .cloud-left-bottom-enter-from {
- opacity: 0;
- translate: -100% 100%;
- }
- .cloud-left-bottom-leave-to {
- opacity: 0;
- pointer-events: none;
- translate: -100% 100%;
- }
- .cloud-right-bottom{
- position: absolute;
- right: 0;
- bottom: 0;
- height: 95%;
- z-index: 12;
- }
- .cloud-right-bottom-enter-active {
- transition: all 1.5s;
- }
- .cloud-right-bottom-leave-active {
- transition: all 1.5s;
- pointer-events: none;
- }
- .cloud-right-bottom-enter-from {
- opacity: 0;
- translate: 100% 100%;
- }
- .cloud-right-bottom-leave-to {
- opacity: 0;
- pointer-events: none;
- translate: 100% 100%;
- }
- }
- @keyframes character-default-animation {
- 0% {
- translate: 0 0;
- }
- 100% {
- translate: -100% 0;
- }
- }
- </style>
|