Files
kuboard-press/.vuepress/components/AdSenseRightSide.vue
huanqing.shao f90a593a8a 调度框架
2019-10-13 10:44:05 +08:00

40 lines
775 B
Vue

<template>
<div class="adsense-right">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- AdSenseRightSide -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-3313149841665250"
data-ad-slot="2638666669"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</template>
<script>
export default {
data () {
return {
show: false
}
}
}
</script>
<style scoped>
.adsense-right {
width: calc(50vw - 700px);
max-width: 450px;
height: 50vh;
position: fixed;
bottom: 80px;
right: 10px;
background-color: grey;
}
</style>