123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- <template>
- <div class="ship-game">
- <img
- class="close"
- draggable="false"
- src="@/assets/images/ship-game/icon_cancel-min.png"
- @click="back"
- >
- <div
- v-if="showBanner"
- class="ship-game-banner"
- >
- <img
- class="logo"
- src="@/assets/images/ship-game/Group 493-min.png"
- >
- <p>
- 选择船只,出现此船只轮廓图和船只构件,选择构件拖拽至线稿船对应区域填充,搭建完整船只
- </p>
- <button @click="showBanner = false">
- 开始
- </button>
- </div>
- <template v-else>
- <img
- class="logo2"
- draggable="false"
- src="@/assets/images/ship-game/Group 493-min.png"
- >
- <p class="tips">
- 长按下方部件并拖动到正确位置,完成船只拼图
- </p>
- <div class="ship-game-container">
- <template
- v-for="item in MODULE_LIST"
- :key="item.key"
- >
- <Container
- v-if="curDragKey === item.key || checkedModule.includes(item.key)"
- class="img"
- group-name="default"
- :should-animate-drop="() => false"
- :style="`${item.hightImgStyle} background: url(${checkedModule.includes(item.key) ? item.img : item.hightImg}) no-repeat center / cover`"
- @drop="res => {
- if (!checkedModule.includes(res.payload.key)) {
- checkedModule.push(res.payload.key)
- }
- }"
- >
- <div />
- </Container>
- </template>
- </div>
- <Container
- behaviour="copy"
- drag-class="drag-class"
- class="ship-game-footer drag"
- group-name="default"
- non-drag-area-selector=".checked"
- :get-child-payload="(x) => MODULE_LIST[x]"
- @drag-end="() => {
- curDragKey = ''
- }"
- >
- <Draggable
- v-for="item in MODULE_LIST"
- :key="item.key"
- :class="['ship-game-footer__item', checkedModule.includes(item.key) && 'checked']"
- @mousedown="() => {
- curDragKey = item.key
- }"
- @touchstart="() => {
- curDragKey = item.key
- }"
- >
- <img
- draggable="false"
- :src="item.img"
- :style="{width: item.imgWidth}"
- >
- <div
- v-if="checkedModule.includes(item.key)"
- class="icon"
- />
- </Draggable>
- </Container>
- <div class="ship-game-footer">
- <div
- v-for="item in MODULE_LIST"
- :key="item.key"
- :class="['ship-game-footer__item']"
- >
- <span>{{ item.label }}</span>
- </div>
- </div>
- </template>
- <video
- v-if="showVideo"
- class="video"
- autoplay
- src="@/assets/videos/ship-game/end.mp4"
- @ended="back"
- />
- </div>
- </template>
- <script setup>
- import { ref, watch } from 'vue'
- // import { useRouter } from 'vue-router'
- import { Container, Draggable } from "vue3-smooth-dnd"
- // const router = useRouter()
- const showBanner = ref(true)
- const showVideo = ref(false)
- const MODULE_LIST = [
- {
- label: '甲板',
- img: require('@/assets/images/ship-game/jiaban-min.png'),
- imgWidth: '252px',
- hightImg: require('@/assets/images/ship-game//highlight_Deck-min.png'),
- hightImgStyle: 'right: 18px; bottom: 46px; width: 985px; height: 88px;',
- key: 'jiaban'
- },
- {
- label: '船底',
- img: require('@/assets/images/ship-game/di-min.png'),
- imgWidth: '261px',
- hightImg: require('@/assets/images/ship-game/highlight_Bilge-min.png'),
- hightImgStyle: 'right: 43px; bottom: 1px; width: 950px; height: 88px;',
- key: 'chuandi'
- },
- {
- label: '船舱',
- img: require('@/assets/images/ship-game/chuanxiang-min.png'),
- imgWidth: '166px',
- hightImg: require('@/assets/images/ship-game/highlight_Cabin-min.png'),
- hightImgStyle: 'left: 322px; bottom: 70px; z-index: 2; width: 223px; height: 155px;',
- key: 'chuancang'
- },
- {
- label: '船舵',
- img: require('@/assets/images/ship-game/duo-min.png'),
- imgWidth: '203px',
- hightImg: require('@/assets/images/ship-game/highlight_hoods-min.png'),
- hightImgStyle: 'left: 22px; bottom: 53px; z-index: 2; width: 272px; height: 107px;',
- key: 'chuanduo'
- },
- {
- label: '船篷',
- img: require('@/assets/images/ship-game/peng-min.png'),
- imgWidth: '104px',
- hightImg: require('@/assets/images/ship-game/highlight_ship-min.png'),
- hightImgStyle: 'left: 198px; bottom: 81px; z-index: 2; width: 158px; height: 146px;',
- key: 'chuanpeng'
- },
- {
- label: '桅杆',
- img: require('@/assets/images/ship-game/gan-min.png'),
- imgWidth: '206px',
- hightImg: require('@/assets/images/ship-game/highlight_Mast-min.png'),
- hightImgStyle: 'left: 200px; top: 0; z-index: 2; width: 806px; height: 509px;',
- key: 'weigan'
- }
- ]
- const curDragKey = ref('')
- const checkedModule = ref([])
- const emits = defineEmits(['close'])
- watch(checkedModule, val => {
- if (val.length === 6) {
- setTimeout(() => {
- showVideo.value = true
- }, 200)
- }
- }, {
- deep: true
- })
- const back = () => {
- // router.back()
- emits('close')
- }
- </script>
- <style lang="less" scoped>
- .drag-class {
- width: auto !important;
- }
- .ship-game {
- height: 100vh;
- background: #F3EAE3;
- .close {
- position: absolute;
- top: 52px;
- right: 58px;
- cursor: pointer;
- z-index: 8;
- }
- .video {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 9;
- }
- &-container {
- position: absolute;
- top: 40px;
- left: 50%;
- width: 1144px;
- height: 611px;
- transform: translateX(-50%);
- background: url('@/assets/images/ship-game/bg-boat-min.png') no-repeat center / cover;
- .img {
- position: absolute;
- transition: all linear .2s;
- }
- }
- .logo2 {
- position: absolute;
- top: 76px;
- left: 62px;
- width: 460px;
- }
- .tips {
- position: absolute;
- top: 212px;
- left: 94px;
- width: 300px;
- font-size: 22px;
- color: #2E5A89;
- line-height: 37px;
- user-select: none;
- }
- &-footer {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- gap: 18px;
- padding: 18px;
- background: #AEAEAE;
- z-index: 1;
- &.drag {
- background: transparent;
- z-index: 2;
- .ship-game-footer__item {
- background: transparent;
- }
- }
- &__item {
- flex: 1;
- display: flex !important;
- align-items: center;
- justify-content: center;
- position: relative;
- padding: 19px;
- height: 182px;
- border-radius: 10px;
- box-sizing: border-box;
- background: #524B4B;
- &.checked {
- user-select: none;
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(255, 255, 255, .3);
- z-index: 1;
- }
- }
- .icon {
- position: absolute;
- top: 9px;
- right: 13px;
- width: 45px;
- height: 45px;
- background: url('@/assets/images/ship-game/Frame-min.png') no-repeat center / cover;
- z-index: 2;
- }
- img {
- width: 100%;
- cursor: pointer;
- }
- span {
- position: absolute;
- left: 21px;
- bottom: 9px;
- color: white;
- font-size: 22px;
- }
- }
- }
- &-banner {
- position: absolute;
- top: 0;
- left: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100vw;
- height: 100vh;
- background: url("@/assets/images/ship-game/bg_-min.png") no-repeat center /
- cover;
- z-index: 5;
- p {
- padding: 20px 0 120px;
- width: 714px;
- font-size: 22px;
- color: #2e5a89;
- line-height: 37px;
- text-align: center;
- }
- button {
- width: 90px;
- height: 40px;
- line-height: 40px;
- border-radius: 5px;
- color: #f3eae3;
- font-size: 26px;
- background: #2e5a89;
- }
- }
- }
- </style>
|