-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPendleSection.vue
75 lines (65 loc) · 1.48 KB
/
PendleSection.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<script setup lang="ts">
import PendleLogo from '../components/PendleLogo.vue';
import RandomWordsHexaGrid from '../components/RandomWordsHexaGrid.vue';
const props = defineProps<{
backgroundWords?: string[];
}>();
</script>
<template>
<div class="slidev-layout section pendle-section">
<div class="background">
<PendleLogo class="pendle-logo" :width="900" />
<RandomWordsHexaGrid
:row-count="5"
:col-count="7"
:spacing="200"
:words=props.backgroundWords
:max-rotation="Math.PI / 2"
cell-class="cell"
/>
</div>
<div h-full grid>
<div my-auto class="slot">
<slot />
</div>
</div>
</div>
</template>
<style>
.pendle-section-enter-from .pendle-logo,
.pendle-section-leave-to .pendle-logo {
transform: translate(55%, 100%);
}
.pendle-section-enter-from .cell,
.pendle-section-leave-to .cell {
left: calc(150%) !important;
transform: rotate(0) !important;
}
.pendle-section-enter-from .slot,
.pendle-section-leave-to .slot {
opacity: 0;
}
.background {
opacity: 0.3;
z-index: -1;
}
.pendle-logo {
position: absolute;
right: 0;
transform: translate(50%, 0);
top: -850px;
}
.cell {
font-size: 1em;
color: gray;
}
.slot {
z-index: 1;
opacity: 1;
}
/* @keyframes PendleLogoShowUp {
from {
transform: translate()
}
} */
</style>