123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- <template>
- <div id="app">
- <transition name="fade-out">
- <HomeFadeIn
- v-if="isShowFadeInMask"
- class="fade-in-mask"
- :progress="progress"
- />
- </transition>
- <div
- v-show="$route.meta.isShow3DMap"
- id="unity-container"
- >
- <canvas
- id="unity-canvas"
- width="960"
- height="600"
- tabindex="-1"
- />
- </div>
- <router-view />
- <nav
- :style="{
- bottom: isShowNavBar ? '0' : '-112px',
- }"
- >
- <button
- class="tab-item"
- :class="{
- active: $route.name === 'GeneralView'
- }"
- @click="$router.push({name: 'GeneralView'})"
- >
- 概述总览
- <img
- class="decorator"
- src="@/assets/images/nav-item-active-decorator.png"
- alt=""
- draggable="false"
- >
- </button>
- <button
- class="tab-item"
- :class="{
- active: $route.name === 'HistoryView'
- }"
- @click="$router.push({name: 'HistoryView'})"
- >
- 历史回顾
- <img
- class="decorator"
- src="@/assets/images/nav-item-active-decorator.png"
- alt=""
- draggable="false"
- >
- </button>
- <button
- class="tab-item"
- :class="{
- active: $route.name === 'TreasureView'
- }"
- @click="$router.push({name: 'TreasureView'})"
- >
- 国之重器
- <img
- class="decorator"
- src="@/assets/images/nav-item-active-decorator.png"
- alt=""
- draggable="false"
- >
- </button>
- <button
- class="tab-item"
- :class="{
- active: $route.name === 'MetaverseView'
- }"
- @click="$router.push({name: 'MetaverseView'})"
- >
- 工业元宇宙
- <img
- class="decorator"
- src="@/assets/images/nav-item-active-decorator.png"
- alt=""
- draggable="false"
- >
- </button>
- </nav>
- <button
- class="show-hide"
- :style="{
- backgroundImage: isShowNavBar ? `url(${require(`@/assets/images/arrow-down.png`)})` : `url(${require(`@/assets/images/arrow-up.png`)})`,
- }"
- @click="isShowNavBar = !isShowNavBar"
- />
- </div>
- </template>
- <script>
- import HomeFadeIn from "@/components/HomeFadeIn.vue"
- import {
- computed,
- onMounted,
- reactive,
- ref,
- } from 'vue'
- export default {
- components: {
- HomeFadeIn,
- },
- setup () {
- console.log('setup!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
- const isShowFadeInMask = ref(process.env.VUE_APP_CLI_MODE === 'dev' ? false : true)
- const progress = ref(0)
- onMounted(() => {
- console.log('onMounted!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!')
- // this.$mitt.on('test', e => {
- // console.log('test', e)
- // })
- /**
- * 加载unity
- */
- window.addEventListener("load", function () {
- if ("serviceWorker" in navigator) {
- navigator.serviceWorker.register("ServiceWorker.js")
- }
- })
- var canvas = document.querySelector("#unity-canvas")
- var buildUrl = "unity/Build"
- var loaderUrl = buildUrl + "/SHIndustryMuseum_1.9.loader.js"
- var config = {
- dataUrl: buildUrl + "/SHIndustryMuseum_1.9.data.unityweb",
- frameworkUrl: buildUrl + "/SHIndustryMuseum_1.9.framework.js.unityweb",
- codeUrl: buildUrl + "/SHIndustryMuseum_1.9.wasm.unityweb",
- streamingAssetsUrl: "StreamingAssets",
- companyName: "DefaultCompany",
- productName: "SHIndustryMuseum",
- productVersion: "0.1",
- }
- // By default Unity keeps WebGL canvas render target size matched with
- // the DOM size of the canvas element (scaled by window.devicePixelRatio)
- // Set this to false if you want to decouple this synchronization from
- // happening inside the engine, and you would instead like to size up
- // the canvas DOM size and WebGL render target sizes yourself.
- // config.matchWebGLToCanvasSize = false;
- if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
- // Mobile device style: fill the whole browser client area with the game canvas:
- var meta = document.createElement('meta')
- meta.name = 'viewport'
- meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes'
- document.getElementsByTagName('head')[0].appendChild(meta)
- }
- var script = document.createElement("script")
- script.src = loaderUrl
- script.onload = () => {
- createUnityInstance(canvas, config, (paramProgress) => {
- progress.value = Math.round(paramProgress * 100)
- if (paramProgress > 0.95) {
- setTimeout(() => {
- isShowFadeInMask.value = false
- }, 1000)
- }
- }).then((unityInstance) => {
- window.gUnityInst = unityInstance
- for (let index = 1; index <= 36; index++) {
- unityInstance.SendMessage('Panel1', 'ShowEnterprise', index) //显示id为index的企业
- // unityInstance.SendMessage('Panel1', 'HideEnterprise', index); //隐藏id为index的企业
- }
- }).catch((message) => {
- alert(message)
- })
- }
- window.onClickEnterprise = function (id) {
- if (window.onCorpOnMapClicked) {
- window.onCorpOnMapClicked(id)
- }
- }
- document.body.appendChild(script)
- /**
- * end of unity
- */
- })
- const isShowNavBar = ref(true)
- const activeNavItemIdx = ref(0)
- return {
- isShowFadeInMask,
- progress,
- isShowNavBar,
- activeNavItemIdx,
- }
- },
- }
- </script>
- <style lang="less">
- html, body {
- // overscroll-behavior: none;
- // overflow: hidden;
- height: 100%;
- }
- #app {
- height: 100%;
- width: 100%;
- height: 100%;
- background-image: url(@/assets/images/main-bg.jpg);
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- }
- // * {
- // user-select: none;
- // -webkit-touch-callout: none;
- // }
- // // 360浏览器不支持not()
- // input, textarea {
- // user-select: initial;
- // }
- // 字体
- // @font-face {
- // font-family: 'Source Han Serif CN';
- // src: url('@/assets/style/SourceHanSerifCN-Regular.otf');
- // }
- // @font-face {
- // font-family: 'Source Han Serif CN-Bold';
- // src: url('@/assets/style/SourceHanSerifCN-Bold.otf');
- // }
- // i {
- // font-style: italic;
- // }
- // 滚动条
- // ::-webkit-scrollbar { background: #dddecc; width: 0.3rem; height: 0.3rem; } /*宽度是对垂直滚动条而言,高度是对水平滚动条而言*/
- // ::-webkit-scrollbar-thumb { background: #828a5b; border-radius: 0.15rem; }
- // ::-webkit-scrollbar-corner { background: #dddecc; }
- // vue组件过渡效果
- .fade-out-leave-active {
- transition: opacity 1s;
- }
- .fade-out-leave-to {
- opacity: 0;
- }
- // // 不断渐变显隐 animation
- // .animation-show-hide {
- // animation: show-hide 1.8s infinite;
- // }
- // @keyframes show-hide {
- // 0% {
- // opacity: 0;
- // }
- // 50% {
- // opacity: 1;
- // }
- // 100% {
- // opacity: 0;
- // }
- // }
- // // vue-viewer
- // .viewer-container {
- // background-color: rgba(0, 0, 0, 80%) !important;
- // }
- // 或者
- // .viewer-backdrop {
- // background-color: rgba(0, 0, 0, 90%) !important;
- // }
- </style>
- <style scoped lang="less">
- #app {
- >.fade-in-mask {
- z-index: 5;
- }
- >nav {
- position: absolute;
- left: 0;
- width: 100%;
- height: 112px;
- border-radius: 5px 5px 0 0;
- border-top: solid 1px #D2BD84;
- box-shadow: inset 0px 2px 2px 0px rgba(210,189,132,0.45), 0px -9px 24px 0px rgba(183,162,109,0.25);
- display: flex;
- justify-content: center;
- align-items: center;
- transition: all 0.5s;
- backdrop-filter: blur(5px);
- >button.tab-item {
- font-size: 30px;
- font-family: Source Han Sans CN-Regular, Source Han Sans CN;
- font-weight: 400;
- color: #FFFFFF;
- margin-left: 200px;
- opacity: 0.5;
- position: relative;
- user-select: none;
- >img.decorator {
- display: none;
- }
- &:first-of-type {
- margin-left: initial;
- }
- &.active {
- opacity: initial;
- >img.decorator {
- display: initial;
- position: absolute;
- left: 50%;
- bottom: -15px;
- transform: translateX(-50%);
- width: 150%;
- }
- }
- }
- @media only screen and (max-width: 1400px) {
- >button.tab-item {
- margin-left: 100px;
- }
- }
- }
- >button.show-hide {
- position: absolute;
- right: 82px;
- bottom: 34px;
- width: 36px;
- height: 36px;
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- }
- @media only screen and (max-width: 1400px) {
- >button.show-hide {
- right: 10px;
- }
- }
- }
- </style>
|