hero-section.vue
4.47 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<script setup lang="ts">
import { useMouse } from '@vueuse/core'
import { useTheme } from 'vuetify'
import { useGenerateImageVariant } from '@/@core/composable/useGenerateImageVariant'
import darkBg from '@images/front-pages/backgrounds/hero-bg-dark.png'
import lightBg from '@images/front-pages/backgrounds/hero-bg.png'
import heroDashboardImgDark from '@images/front-pages/landing-page/hero-dashboard-dark.png'
import heroDashboardImgLight from '@images/front-pages/landing-page/hero-dashboard-light.png'
import heroElementsImgDark from '@images/front-pages/landing-page/hero-elements-dark.png'
import heroElementsImgLight from '@images/front-pages/landing-page/hero-elements-light.png'
const theme = useTheme()
const isDark = ref(theme.name)
const heroBgUrl = computed(() => {
if (isDark.value === 'dark')
return darkBg
else
return lightBg
})
const heroElementsImg = useGenerateImageVariant(heroElementsImgLight, heroElementsImgDark)
const heroDashboardImg = useGenerateImageVariant(heroDashboardImgLight, heroDashboardImgDark)
const { x, y } = useMouse({ touch: false })
const transformDashboardImg = ref('translate(0px, 0px)')
const transformHeroElements = ref('translate(0px, 0px)')
const calculatePosition = (speed: number) => {
const positionX = (window.innerWidth - (x.value * speed)) / 100
const positionY = Math.max((window.innerHeight - (y.value * speed)) / 100, -40)
return `translate(${positionX}px, ${positionY}px)`
}
onMounted(() => {
watchEffect(() => {
transformDashboardImg.value = calculatePosition(2.5)
transformHeroElements.value = calculatePosition(5)
})
})
</script>
<template>
<section
id="home"
:style="{ 'background-color': 'rgb(var(--v-theme-surface))' }"
>
<div
id="landingHero"
class="landing-hero"
:style="{ backgroundImage: `url(${heroBgUrl})` }"
>
<VContainer>
<div class="text-center px-6">
<div class="mb-4">
<div class="landing-page-title">
All in one sass application
</div>
<div class="landing-page-title">
for your business
</div>
</div>
<div class="text-body-1 font-weight-medium text-high-emphasis pb-8">
<p class="mb-0">
No coding required to make customization
</p>
<p class="mb-0">
The live customer has everything your marketing needs
</p>
</div>
<VBtn
:to="{ name: 'front-pages-landing-page', hash: `#pricing-plan` }"
size="large"
:active="false"
>
Get Early Access
</VBtn>
</div>
<div class="position-relative hero-animation-img">
<div class="hero-dashboard-img text-center">
<NuxtLink
to="/"
target="_blank"
>
<img
:src="heroDashboardImg"
class="mx-auto cursor-pointer"
:style="{ transform: transformDashboardImg }"
>
</NuxtLink>
</div>
<div class="hero-elements-img">
<NuxtLink
to="/"
target="_blank"
>
<img
class="cursor-pointer"
:src="heroElementsImg"
:style="{ transform: transformHeroElements }"
target="_blank"
>
</NuxtLink>
</div>
</div>
</VContainer>
</div>
</section>
</template>
<style lang="scss" scoped>
section {
display: block;
padding-block-end: 6.25rem;
}
.landing-hero {
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
padding-block-start: 9rem;
}
.hero-dashboard-img {
img {
inline-size: 85%;
}
}
.hero-elements-img {
position: absolute;
inline-size: 100%;
inset: 0;
margin-block: 15%;
margin-inline: auto;
img {
inline-size: 100%;
}
}
.container {
margin-inline: auto;
max-inline-size: 85vw;
}
.feature-cards {
margin-block-start: 6.25rem;
}
.landing-page-title {
color: rgb(var(--v-theme-primary));
font-size: 2.375rem;
font-weight: 800;
line-height: 2.75rem;
}
.hero-animation-img {
inset-block-start: 0;
margin-block-end: -16rem;
}
@media (max-width: 960px) {
.hero-animation-img {
inset-block-start: 2rem;
margin-block-end: -8rem;
}
}
@media (max-width: 600px) {
.hero-animation-img {
inset-block-start: 1rem;
margin-block-end: -2rem;
}
}
</style>