86 lines
1.8 KiB
Vue
86 lines
1.8 KiB
Vue
<!-- 在vitepress右侧的目录导航中插入动态广告组件-->
|
||
|
||
<script setup>
|
||
import { ref, onMounted, onUnmounted } from 'vue'
|
||
|
||
const ads = ref([])
|
||
const currentAdIndex = ref(0)
|
||
let intervalId = null
|
||
|
||
const fetchAds = async () => {
|
||
return [
|
||
{
|
||
id: 1,
|
||
imageUrl: 'https://dashboard.ipcola.com/assets/logo-blue-44f7d385.png',
|
||
landingUrl: 'https://dashboard.ipcola.com/register?referral_code=atxtupzfjhpbdbl',
|
||
text: '⚡️【IPCola全球独家海外IP代理】⚡️新鲜的原生住宅代理,超高性价比,超多稀缺国家'
|
||
}
|
||
]
|
||
}
|
||
|
||
const nextAd = () => {
|
||
currentAdIndex.value = (currentAdIndex.value + 1) % ads.value.length
|
||
}
|
||
|
||
onMounted(async () => {
|
||
ads.value = await fetchAds()
|
||
intervalId = setInterval(nextAd, 3000)
|
||
})
|
||
|
||
onUnmounted(() => {
|
||
if (intervalId) clearInterval(intervalId)
|
||
})
|
||
</script>
|
||
|
||
<template>
|
||
<div class="vp-ad-carousel">
|
||
<template v-if="ads.length > 0">
|
||
<div class="ad-content">
|
||
<a :href="ads[currentAdIndex].landingUrl" target="_blank" rel="noopener noreferrer">
|
||
<img :src="ads[currentAdIndex].imageUrl" :alt="ads[currentAdIndex].text" class="ad-image">
|
||
<p class="ad-text">{{ ads[currentAdIndex].text }}</p>
|
||
</a>
|
||
</div>
|
||
</template>
|
||
<p v-else class="loading">Loading ads...</p>
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.vp-ad-carousel {
|
||
margin-top: 1rem;
|
||
padding: 1rem;
|
||
background-color: var(--vp-c-bg-soft);
|
||
border-radius: 8px;
|
||
font-size: 0.875rem;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.ad-content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
|
||
.ad-image {
|
||
max-width: 130px;
|
||
height: auto;
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.ad-text {
|
||
text-align: center;
|
||
color: var(--vp-c-text-1);
|
||
}
|
||
|
||
.loading {
|
||
text-align: center;
|
||
color: var(--vp-c-text-2);
|
||
}
|
||
|
||
a {
|
||
text-decoration: none;
|
||
color: inherit;
|
||
}
|
||
</style>
|