naive-ui/demo/documentation/landing/index.vue

160 lines
3.6 KiB
Vue
Raw Normal View History

2020-02-27 18:09:23 +08:00
<template>
<n-config-consumer>
2020-11-03 15:10:29 +08:00
<template #default="{ theme }">
2020-02-27 18:09:23 +08:00
<div>
<n-layout-footer position="absolute" style="z-index: auto;">
2020-03-05 22:31:20 +08:00
<landing-footer style="max-width: 1200px; margin: auto;" />
</n-layout-footer>
2020-02-27 18:09:23 +08:00
<div class="banner">
<left-image class="left-image" />
<right-image class="right-image" />
<n-h1
style="margin-top: 0;"
class="naive-title"
>
2020-02-29 14:55:52 +08:00
<span
@mouseenter="handleTitleMouseEnter"
@mouseleave="handleTitleMouseLeave"
>Na{{ hover ? 'ï' : 'i' }}ve UI</span>
2020-02-27 18:09:23 +08:00
</n-h1>
<n-p style="font-size: 16px; margin-bottom: 0;">
2020-10-07 20:45:51 +08:00
{{ t("intro1") }}
2020-02-27 18:09:23 +08:00
</n-p>
2020-09-07 16:28:33 +08:00
<n-p style="font-size: 16px; margin-bottom: 4px; margin-top: 4px; font-weight: 500;">
2020-10-07 20:45:51 +08:00
{{ t("intro2") }}
2020-02-27 18:09:23 +08:00
</n-p>
<n-p style="font-size: 16px; margin-top: 0;">
2020-10-07 20:45:51 +08:00
{{ t("intro3") }}
2020-02-27 18:09:23 +08:00
</n-p>
2020-03-02 23:44:05 +08:00
<div>
<n-button type="default" size="large" style="margin-right: 12px;" @click="handleThemeChangeClick">
2020-10-07 20:45:51 +08:00
{{ t("intro4") }}
2020-03-02 23:44:05 +08:00
</n-button>
<n-button type="primary" :ghost="theme === 'dark'" size="large" @click="handleStartClick">
2020-10-07 20:45:51 +08:00
{{ t("start") }}
2020-03-02 23:44:05 +08:00
</n-button>
</div>
2020-02-27 18:09:23 +08:00
</div>
</div>
</template>
</n-config-consumer>
</template>
<script>
import LandingFooter from './Footer.vue'
import leftImage from './Left.vue'
import rightImage from './Right.vue'
import { i18n, useSiteTheme } from '../../util-composables'
2020-02-27 18:09:23 +08:00
export default {
components: {
LandingFooter,
leftImage,
rightImage
},
2020-10-07 20:45:51 +08:00
setup () {
return {
theme: useSiteTheme(),
2020-10-07 20:45:51 +08:00
...(i18n({
'zh-CN': {
2020-11-03 15:10:29 +08:00
start: '开始使用',
intro1: '一个 Vue UI 框架',
intro2: '在意样式,带主题,比较完整,不算太慢',
intro3: '有点意思',
intro4: '换个主题'
2020-10-07 20:45:51 +08:00
},
'en-US': {
2020-11-03 15:10:29 +08:00
start: 'Get Started',
intro1: 'A Vue UI Framework',
intro2: 'Caring About Styles, Themed, Batteries Included, Not Rather Slow',
intro3: 'Interesting Somehow',
intro4: 'Change Theme'
2020-10-07 20:45:51 +08:00
}
}))
}
},
2020-02-29 14:55:52 +08:00
data () {
return {
2020-03-02 23:44:05 +08:00
hover: false,
themeOptions: {
dark: {
next: 'light'
},
light: {
next: 'dark'
}
}
}
},
2020-02-27 18:09:23 +08:00
methods: {
handleStartClick () {
this.$router.push(
/^(\/[^/]+){2}/.exec(this.$route.path)[0] + '/doc/start'
)
2020-02-29 14:55:52 +08:00
},
handleTitleMouseEnter () {
this.hover = true
},
handleTitleMouseLeave () {
this.hover = false
2020-03-02 23:44:05 +08:00
},
handleThemeChangeClick () {
this.theme = this.themeOptions[this.theme].next
2020-02-27 18:09:23 +08:00
}
}
}
</script>
<style scoped>
.banner {
text-align: center;
position: absolute;
2020-02-27 23:03:15 +08:00
top: calc(50% - 36px);
2020-02-27 18:09:23 +08:00
left: 0;
right: 0;
2020-02-27 23:03:15 +08:00
transform: translateY(-50%);
2020-02-27 18:09:23 +08:00
}
.naive-title {
2020-10-07 21:03:23 +08:00
font-family: Metropolis, sans-serif;
2020-08-06 01:51:45 +08:00
font-size: 80px !important;
margin-bottom: 18px !important;
2020-02-27 18:09:23 +08:00
}
@media only screen and (max-width: 1920px) {
.left-image {
2020-02-27 23:03:15 +08:00
right: calc(50% + 270px);
width: calc(50% - 270px);
min-width: 440px;
2020-02-27 18:09:23 +08:00
}
.right-image {
2020-02-27 23:03:15 +08:00
left: calc(50% + 270px);
width: calc(50% - 270px);
min-width: 440px;
2020-02-27 18:09:23 +08:00
}
}
@media only screen and (min-width: 1920px) {
.left-image {
left: 0;
width: 700px;
}
.right-image {
right: 0;
width: 700px;
}
}
.left-image {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.right-image {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
</style>