vuepress-theme-reco/components/Home.vue
2019-12-15 13:19:22 +08:00

246 lines
5.1 KiB
Vue

<template>
<div class="home">
<div class="hero">
<ModuleTransition>
<img
v-if="recoShowModule && $frontmatter.heroImage"
:style="heroImageStyle || {}"
:src="$withBase($frontmatter.heroImage)"
alt="hero">
</ModuleTransition>
<ModuleTransition delay="0.04">
<h1 v-if="recoShowModule && $frontmatter.isShowTitleInHome !== false">{{ $frontmatter.heroText || $title || '午后南杂' }}</h1>
</ModuleTransition>
<ModuleTransition delay="0.08">
<p v-show="recoShowModule" class="description">{{ $description || 'Welcome to your vuePress-theme-reco site' }}</p>
</ModuleTransition>
<ModuleTransition delay="0.16">
<p class="huawei" v-if="recoShowModule && $themeConfig.huawei === true">
<i class="iconfont reco-huawei" style="color: #fc2d38"></i>
&nbsp;&nbsp;&nbsp;华为,为中华而为之!
</p>
</ModuleTransition>
<ModuleTransition delay="0.24">
<p class="action" v-if="recoShowModule && $frontmatter.actionText && $frontmatter.actionLink">
<NavLink class="action-button" :item="actionLink"/>
</p>
</ModuleTransition>
</div>
<ModuleTransition delay="0.32">
<div class="features" v-if="recoShowModule && $frontmatter.features && $frontmatter.features.length">
<div v-for="(feature, index) in $frontmatter.features" :key="index" class="feature">
<h2>{{ feature.title }}</h2>
<p>{{ feature.details }}</p>
</div>
</div>
</ModuleTransition>
<ModuleTransition delay="0.4">
<Content class="home-center" v-show="recoShowModule" custom/>
</ModuleTransition>
</div>
</template>
<script>
import NavLink from '@theme/components/NavLink'
import ModuleTransition from '@theme/components/ModuleTransition'
import moduleTransitonMixin from '@theme/mixins/moduleTransiton'
export default {
mixins: [moduleTransitonMixin],
components: { NavLink, ModuleTransition },
computed: {
actionLink () {
return {
link: this.$frontmatter.actionLink,
text: this.$frontmatter.actionText
}
},
heroImageStyle () {
return this.$frontmatter.heroImageStyle || {
maxHeight: '200px',
margin: '6rem auto 1.5rem'
}
}
}
}
</script>
<style lang="stylus">
@require '../styles/mode.styl'
.home {
padding: $navbarHeight 2rem 0;
max-width: 960px;
margin: 0px auto;
.hero {
text-align: center;
h1 {
font-size: 2.5rem;
color: var(--text-color);
}
h1, .description, .action {
margin: 1.8rem auto;
}
.description {
font-size: 1.6rem;
line-height: 1.3;
color: var(--text-color);
}
.action-button {
display: inline-block;
font-size: 1.2rem;
color: #fff;
background-color: $accentColor;
padding: 0.6rem 1.2rem;
border-radius: $borderRadius
transition: background-color 0.1s ease;
box-sizing: border-box;
load-start()
&:hover {
background-color: lighten($accentColor, 10%);
}
}
}
.features {
border-top: 1px solid var(--border-color);;
padding: 1.2rem 0;
margin-top: 2.5rem;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
align-content: stretch;
justify-content: space-between;
}
.feature {
flex-grow: 1;
flex-basis: 30%;
max-width: 30%;
transition: all .5s
color: var(--text-color);
h2 {
font-size: 1.6rem;
font-weight: 500;
border-bottom: none;
padding-bottom: 0;
}
&:hover {
transform scale(1.05)
}
}
// &.reco-hide {
// .hero {
// img {
// load-start()
// }
// .h1 {
// load-start()
// }
// .description {
// load-start()
// }
// .huawei {
// load-start()
// }
// .action-button {
// load-start()
// }
// }
// .features {
// load-start()
// }
// .home-center {
// load-start()
// padding 0
// }
// }
// &.reco-show {
// .hero {
// img {
// load-end(0.08s)
// }
// .h1 {
// load-end(0.16s)
// }
// .description {
// load-end(0.24s)
// }
// .huawei {
// load-end(0.32s)
// }
// .action-button {
// load-end(0.4s)
// }
// }
// .features {
// load-end(0.40s)
// }
// .home-center {
// load-end(0.48s)
// }
// }
}
@media (max-width: $MQMobile) {
.home {
.features {
flex-direction: column;
}
.feature {
max-width: 100%;
padding: 0 2.5rem;
}
}
}
@media (max-width: $MQMobileNarrow) {
.home {
padding-left: 1.5rem;
padding-right: 1.5rem;
.hero {
img {
max-height: 210px;
margin: 2rem auto 1.2rem;
}
h1 {
font-size: 2rem;
}
h1, .description, .action {
margin: 1.2rem auto;
}
.description {
font-size: 1.2rem;
}
.action-button {
font-size: 1rem;
padding: 0.6rem 1.2rem;
}
}
.feature {
h2 {
font-size: 1.25rem;
}
}
}
}
</style>