123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <div class="welcome">
- <iframe
- src="https://zzbbh.4dage.com/SWKK/show.html?id=WK1564638850838523904&vr=fd720_JMzTknCLP"
- frameborder="0"
- ></iframe>
- <div class="btn" @click.stop="$emit('close')">探索场景</div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {},
- mounted() {},
- };
- </script>
- <style lang="less">
- .welcome {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 11001;
- font-size: 0;
- background-color: black;
- // background-image: url('../../assets/img/home/homeBac.jpg');
- // background-size: 100% 100%;
- iframe {
- width: 100%;
- height: 100%;
- }
- .btn {
- width: 246px;
- height: 77px;
- background-image: url("../../assets/img/home/homeBtn.png");
- background-size: 100% 100%;
- color: #d6b970;
- font-size: 24px;
- font-weight: 700;
- position: absolute;
- z-index: 10;
- bottom: 15%;
- left: 50%;
- transform: translateX(-50%);
- cursor: pointer;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- </style>
|