123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <template>
- <div
- class="bottom-controls"
- :class="{ hidden: isHidden }"
- :style="{ bottom }"
- v-show="show"
- >
- <FloorSwitch />
- <tours />
- </div>
- </template>
- <script setup>
- import { computed } from "vue";
- import { useStore } from "vuex";
- import { ref } from "vue";
- import { useApp, getApp } from "@/app";
- import FloorSwitch from "./FloorSwitch";
- import tours from "./tours";
- const store = useStore();
- const show = ref(false);
- const isHidden = ref(false);
- const bottom = computed(() => {
- return store.getters.controlsBottom;
- });
- useApp().then((app) => {
- app.Scene.on("loaded", () => (show.value = true));
- });
- </script>
- <style lang="scss" scoped>
- .bottom-controls {
- width: 100%;
- position: absolute;
- left: 0;
- right: var(--editor-toolbox-width);
- bottom: 20px;
- height: 34px;
- display: flex;
- justify-content: space-between;
- transition: bottom 0.3s ease;
- z-index: 100;
- }
- :deep(.buttons) {
- pointer-events: all;
- display: flex;
- align-items: center;
- justify-content: space-around;
- height: 34px;
- border-radius: 17px;
- background-color: rgba(0, 0, 0, 0.3);
- > div {
- position: relative;
- margin-left: 20px;
- margin-right: 20px;
- cursor: pointer;
- &.active {
- color: var(--editor-main-color);
- }
- > i {
- font-size: 18px;
- }
- span {
- cursor: pointer;
- display: none;
- position: absolute;
- top: -20px;
- right: -15px;
- width: 24px;
- height: 24px;
- background-color: rgba(0, 0, 0, 0.5);
- border-radius: 50%;
- align-items: center;
- justify-content: center;
- color: var(--editor-main-color);
- transition: all 0.1s;
- &:hover {
- transform: scale(1.2);
- }
- &.disable {
- i {
- opacity: 0.5;
- }
- }
- }
- }
- }
- </style>
|