添加跳转到帮助页面的轮播图

This commit is contained in:
cebgcontract 2022-05-27 09:12:12 +08:00
parent 68e72e5601
commit 76e7742de3
5 changed files with 32 additions and 19 deletions

4
.env
View File

@ -1,5 +1,5 @@
VUE_APP_WALLET_INFURAID='e7743d46923911fa8850619b7a7f6d9d'
VUE_APP_CHAIN_ID=97
VUE_APP_PLAY_URL='javascript:void(0)'
VUE_APP_PLAY_URL='https://play.google.com/store/apps/details?id=games.cebg.metaverse.nft.btc.blockchain.eth.coinbase.binance.FTX.kucoin'
VUE_APP_APPSTORE='javascript:void(0)'
VUE_APP_APK_URL='javascript:void(0)'
VUE_APP_APK_URL='https://www.cebg.games/release/cebg.apk'

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

View File

@ -19,7 +19,7 @@
</div>
</div>
</div>
<a class="play-btn" href="https://whitepaper.cebg.games/" v-show="currentPageIndex===0">
<a class="play-btn" href="https://whitepaper.cebg.games/" v-show="currentPageIndex===1">
Whitepaper
</a>
</section>
@ -46,13 +46,18 @@ export default class extends Vue {
}
get imgs() {
return [{
href: 'javascript:void(0)',
img: require('@/assets/202202/banner-b-0.jpg')
}, {
href: 'https://app.mojitoswap.finance/nfts/collections/0x0EB362BD40F2288fF25A6Ee1b487cB0cb4638e0D#items',
img: require('@/assets/202202/banner-b-3.jpg')
}
return [
{
href: 'https://medium.com/@CEBG-BATTLEGROUNDS/cebg-beta-test-faq-73dc47157e38',
img: require('@/assets/202202/banner-b-help.jpg')
},
{
href: 'javascript:void(0)',
img: require('@/assets/202202/banner-b-0.jpg')
}, {
href: 'https://app.mojitoswap.finance/nfts/collections/0x0EB362BD40F2288fF25A6Ee1b487cB0cb4638e0D#items',
img: require('@/assets/202202/banner-b-3.jpg')
}
]
}
@ -70,7 +75,10 @@ export default class extends Vue {
this.slide = new BetterScroll(this.$refs.slide, {
scrollX: true,
scrollY: false,
slide: true,
slide: {
loop: true,
interval: 6000
},
momentum: false,
bounce: false,
probeType: 3

View File

@ -19,7 +19,7 @@
</div>
</div>
</div>
<a class="play-btn" href="https://whitepaper.cebg.games/" v-show="currentPageIndex===0">
<a class="play-btn" href="https://whitepaper.cebg.games/" v-show="currentPageIndex===1">
Whitepaper
</a>
</section>
@ -46,13 +46,18 @@ export default class MobileTopSection extends Vue {
}
get imgs() {
return [{
href: 'javascript:void(0)',
img: require('@/assets/mobile/index/banner-s-0.jpg')
}, {
href: 'https://app.mojitoswap.finance/nfts/collections/0x0EB362BD40F2288fF25A6Ee1b487cB0cb4638e0D#items',
img: require('@/assets/mobile/index/banner-s-3.jpg')
}
return [
{
href: 'https://medium.com/@CEBG-BATTLEGROUNDS/cebg-beta-test-faq-73dc47157e38',
img: require('@/assets/mobile/index/banner-s-help.jpg')
},
{
href: 'javascript:void(0)',
img: require('@/assets/mobile/index/banner-s-0.jpg')
}, {
href: 'https://app.mojitoswap.finance/nfts/collections/0x0EB362BD40F2288fF25A6Ee1b487cB0cb4638e0D#items',
img: require('@/assets/mobile/index/banner-s-3.jpg')
}
]
}