mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
* sdf * docs: 优化文档 * fix: webpack 编译失败问题 --------- Co-authored-by: wanchun <445436867@qq.com>
257 lines
4.5 KiB
Vue
257 lines
4.5 KiB
Vue
<script setup lang="ts">
|
|
import { type Ref, inject } from 'vue'
|
|
import type { DefaultTheme } from 'vitepress/theme'
|
|
import VPButton from './VPButton.vue'
|
|
import VPImage from './VPImage.vue'
|
|
|
|
export interface HeroAction {
|
|
theme?: 'brand' | 'alt'
|
|
text: string
|
|
link: string
|
|
}
|
|
|
|
defineProps<{
|
|
name?: string
|
|
text?: string
|
|
tagline?: string
|
|
image?: DefaultTheme.ThemeableImage
|
|
actions?: HeroAction[]
|
|
}>()
|
|
|
|
const heroImageSlotExists = inject('hero-image-slot-exists') as Ref<boolean>
|
|
</script>
|
|
|
|
<template>
|
|
<div class="VPHero">
|
|
<div class="container">
|
|
<div v-if="image || heroImageSlotExists" class="image">
|
|
<div class="image-container">
|
|
<div class="image-bg" />
|
|
<slot name="home-hero-image">
|
|
<VPImage v-if="image" class="image-src" :image="image" />
|
|
</slot>
|
|
</div>
|
|
</div>
|
|
<div class="main">
|
|
<slot name="home-hero-info">
|
|
<h1 v-if="name" class="name">
|
|
<span class="clip">{{ name }}</span>
|
|
</h1>
|
|
<p v-if="text" class="text">{{ text }}</p>
|
|
<p v-if="tagline" class="tagline">{{ tagline }}</p>
|
|
</slot>
|
|
|
|
<div v-if="actions" class="actions">
|
|
<div v-for="action in actions" :key="action.link" class="action">
|
|
<VPButton
|
|
tag="a"
|
|
size="medium"
|
|
:theme="action.theme"
|
|
:text="action.text"
|
|
:href="action.link"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPHero {
|
|
margin-top: calc((var(--vp-nav-height) + var(--vp-layout-top-height, 0px)) * -1);
|
|
padding: calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 42px) 24px 48px;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.VPHero {
|
|
padding: calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 42px) 48px 64px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.VPHero {
|
|
padding: calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 42px) 64px 64px;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
max-width: 1152px;
|
|
}
|
|
|
|
.main {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
z-index: 10;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.name,
|
|
.text {
|
|
max-width: 392px;
|
|
letter-spacing: -0.4px;
|
|
line-height: 40px;
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
|
|
.name {
|
|
color: #fff;
|
|
}
|
|
|
|
.clip {
|
|
background: #fff;
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: #fff;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.name,
|
|
.text {
|
|
max-width: 576px;
|
|
line-height: 56px;
|
|
font-size: 48px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.name,
|
|
.text {
|
|
line-height: 64px;
|
|
font-size: 56px;
|
|
}
|
|
}
|
|
|
|
.tagline {
|
|
padding-top: 8px;
|
|
max-width: 392px;
|
|
line-height: 28px;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
white-space: pre-wrap;
|
|
color: var(--vp-c-text-2);
|
|
}
|
|
|
|
|
|
@media (min-width: 640px) {
|
|
.tagline {
|
|
padding-top: 12px;
|
|
max-width: 576px;
|
|
line-height: 32px;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.tagline {
|
|
line-height: 36px;
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: -6px;
|
|
padding-top: 24px;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.actions {
|
|
padding-top: 32px;
|
|
}
|
|
}
|
|
|
|
.action {
|
|
flex-shrink: 0;
|
|
padding: 6px;
|
|
}
|
|
|
|
|
|
.image-container {
|
|
position: relative;
|
|
margin: 0 auto;
|
|
height: 320px;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.image-container {
|
|
width: 392px;
|
|
height: 392px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.image-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 200px;
|
|
}
|
|
}
|
|
|
|
.image-bg {
|
|
position: absolute;
|
|
top: 50%;
|
|
/*rtl:ignore*/
|
|
left: 50%;
|
|
border-radius: 50%;
|
|
width: 192px;
|
|
height: 192px;
|
|
background-image: var(--vp-home-hero-image-background-image);
|
|
filter: var(--vp-home-hero-image-filter);
|
|
/*rtl:ignore*/
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.image-bg {
|
|
width: 256px;
|
|
height: 256px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.image-bg {
|
|
width: 320px;
|
|
height: 320px;
|
|
}
|
|
}
|
|
|
|
:deep(.image-src) {
|
|
position: absolute;
|
|
top: 50%;
|
|
/*rtl:ignore*/
|
|
left: 50%;
|
|
max-width: 192px;
|
|
max-height: 192px;
|
|
/*rtl:ignore*/
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
:deep(.image-src) {
|
|
max-width: 256px;
|
|
max-height: 256px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
:deep(.image-src) {
|
|
max-width: 320px;
|
|
max-height: 320px;
|
|
}
|
|
}
|
|
</style>
|