mand-mobile/site/theme/default/components/Footer.vue

160 lines
3.6 KiB
Vue
Raw Normal View History

2018-03-26 16:04:04 +08:00
<template>
<div class="mfe-blog-theme-default-footer">
<div class="default-footer-container">
<!-- <ul class="default-footer-category">
2018-03-26 16:04:04 +08:00
<h1>
<img src="//manhattan.didistatic.com/static/manhattan/mand/docs/mand-logo-white.svg" alt="">
<br>
<span>Mand Mobile</span>
2018-03-26 16:04:04 +08:00
</h1>
</ul> -->
2018-03-26 16:04:04 +08:00
<ul
class="default-footer-category"
2018-05-16 20:57:22 +08:00
v-for="(items, i) in list"
2018-03-26 16:04:04 +08:00
:key="i">
<h1 v-html="items.title"></h1>
<li
v-for="(link, j) in items.link"
:key="j">
<a :href="link.src" v-html="link.text" v-if="link.src"></a>
<p v-html="link.text" v-else></p>
</li>
</ul>
</div>
<div class="default-footer-copyright" v-if="copyRight">
<div class="default-footer-copyright-container">
Copyright &copy; <span v-html="copyRight"></span>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'mfe-blog-theme-default-footer',
data() {
return {
links: window.mbConfig.links,
copyRight: window.mbConfig.copyRight,
powerBy: window.mbConfig.powerBy,
produceBy: window.mbConfig.produceBy,
}
},
2018-05-16 20:57:22 +08:00
computed: {
lang() {
return ~this.$route.path.indexOf('zh-CN') ? 'zh-CN' : 'en-US'
},
list() {
return this.links[this.lang]
}
}
2018-03-26 16:04:04 +08:00
}
</script>
<style lang="stylus">
.mfe-blog-theme-default-footer
position relative
2022-01-28 11:26:16 +08:00
height 390px
2018-03-26 16:04:04 +08:00
-webkit-font-smoothing antialiased
2022-01-28 11:26:16 +08:00
background-color #000
2019-04-06 22:32:34 +08:00
&.stricky
.default-footer-container, .default-footer-copyright-container
left 16.6%
2018-03-26 16:04:04 +08:00
.default-footer-copyright
position absolute
left 0
2022-01-28 11:26:16 +08:00
bottom 24px
2018-03-26 16:04:04 +08:00
z-index 2
width 100%
2022-01-28 11:26:16 +08:00
height 20px
line-height 20px
color #D8D8D8
2018-03-26 16:04:04 +08:00
.default-footer-container
position relative
z-index 2
width 1280px
margin 0 auto
2022-01-28 11:26:16 +08:00
padding-top 58px
2018-03-26 16:04:04 +08:00
box-sizing border-box
clearfix()
.default-footer-copyright-container
2019-04-06 22:32:34 +08:00
position relative
2018-03-26 16:04:04 +08:00
width 1280px
margin 0 auto
.default-footer-category
float left
width 18%
2022-01-28 11:26:16 +08:00
color #D8D8D8
2018-03-26 16:04:04 +08:00
box-sizing border-box
h1
float left
width 100%
2022-01-28 11:26:16 +08:00
margin-bottom 24px
color #FFF
font-size 16px
2018-03-26 16:04:04 +08:00
font-family AvenirNext-Medium, "Microsoft Yahei", "Lato", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, Tahoma, sans-serif !important
font-weight 600
span
font-family DIDIFD-Medium
2018-03-26 16:04:04 +08:00
li
float left
width 100%
2022-01-28 11:26:16 +08:00
margin-bottom 14px
font-size 14px
2018-03-26 16:04:04 +08:00
p
float left
i
float left
margin-top 5px
margin-right 10px
a
2022-01-28 11:26:16 +08:00
color #D8D8D8
2018-03-26 16:04:04 +08:00
text-decoration none
2018-05-10 11:37:57 +08:00
transition color .3s
2022-01-28 11:26:16 +08:00
opacity .7
2018-05-10 11:37:57 +08:00
-webkit-font-smoothing initial
&:hover
2022-01-28 11:26:16 +08:00
color #FFF
opacity 1
2018-03-26 16:04:04 +08:00
span
2022-01-28 11:26:16 +08:00
color #D8D8D8
2018-05-10 11:37:57 +08:00
font-size 12px
@media (max-width: 1400px)
2018-12-28 14:57:46 +08:00
.default-footer-container, .default-footer-copyright-container
width 900px !important
@media (max-width: 850px)
2018-03-26 16:04:04 +08:00
.mfe-blog-theme-default-footer
display block
2018-03-30 11:44:29 +08:00
height auto !important
padding .32rem 5% .32rem
2022-01-28 11:26:16 +08:00
background #000
2018-03-30 11:44:29 +08:00
.default-footer-container
2018-03-26 16:04:04 +08:00
width 100% !important
2018-03-30 11:44:29 +08:00
padding .32rem
.default-footer-bg
display none
2018-03-26 16:04:04 +08:00
.default-footer-category
display block
2018-03-30 11:44:29 +08:00
width 50%
2018-03-26 16:04:04 +08:00
margin 0 0 .2rem
h1
margin-bottom .2rem
2022-01-28 11:26:16 +08:00
font-size 18px
2018-05-02 19:23:24 +08:00
a
display none
2018-03-26 16:04:04 +08:00
li
margin-bottom .12rem
2022-01-28 11:26:16 +08:00
font-size 14px
2018-03-30 11:44:29 +08:00
&:first-child
display none
.default-footer-copyright
display none
2018-03-26 16:04:04 +08:00
</style>