mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 10:01:15 +08:00
66 lines
1.3 KiB
Vue
66 lines
1.3 KiB
Vue
<template>
|
|
<div
|
|
v-if="isEffective(effectiveTime)"
|
|
id="geektime-ads"
|
|
:class="isMobile ? 'geektime-ads-mobile':''"
|
|
>
|
|
<a
|
|
href="https://time.geekbang.org/column/intro/216?utm_term=zeusH8E0I&utm_source=website&utm_medium=tangjinzhou"
|
|
target="_blank"
|
|
>
|
|
<img
|
|
height="100"
|
|
alt="浏览器工作原理与实践"
|
|
src="http://pvrd7go2h.bkt.clouddn.com/geektime-browser.jpeg"
|
|
/>
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import moment from 'moment';
|
|
export default {
|
|
props: ['isMobile'],
|
|
data() {
|
|
return {
|
|
visible: true,
|
|
effectiveTime: {
|
|
start: '2019-08-05 17:00:00',
|
|
end: '2019-09-05 17:00:00',
|
|
},
|
|
};
|
|
},
|
|
methods: {
|
|
isEffective({ start, end }) {
|
|
return moment().isBetween(start, end);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
#geektime-ads {
|
|
width: 266px;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0px;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
z-index: 9;
|
|
background-color: #fff;
|
|
border-radius: 3px;
|
|
font-size: 13px;
|
|
background: #f5f5f5;
|
|
font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
|
|
}
|
|
#geektime-ads.geektime-ads-mobile {
|
|
width: 100%;
|
|
position: relative;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding: 0;
|
|
margin-bottom: 15px;
|
|
}
|
|
</style>
|
|
|