第二页初版
78
src/App.vue
@@ -1,10 +1,22 @@
|
|||||||
<template>
|
<template>
|
||||||
<FullPage ref="fullpageRef">
|
<div class="app-wrapper">
|
||||||
<PageHome @navigate="handleNavigate" />
|
<nav class="global-nav">
|
||||||
<PageProduct />
|
<div class="nav-logo">
|
||||||
<PageAdvantage />
|
<img src="/src/assets/images/logo-top.png" class="logo-img" />
|
||||||
<PageContact />
|
<span class="logo-text">Key of Love</span>
|
||||||
</FullPage>
|
</div>
|
||||||
|
<ul class="nav-links">
|
||||||
|
<li><a href="#">Home</a></li>
|
||||||
|
<li><a href="#">Privacy Agreement</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<FullPage ref="fullpageRef">
|
||||||
|
<PageHome @navigate="handleNavigate" />
|
||||||
|
<PageProduct />
|
||||||
|
<PageAdvantage />
|
||||||
|
<PageContact />
|
||||||
|
</FullPage>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
@@ -21,3 +33,57 @@ function handleNavigate(index) {
|
|||||||
fullpageRef.value?.goTo(index)
|
fullpageRef.value?.goTo(index)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
@import '@/assets/variables.less';
|
||||||
|
|
||||||
|
.app-wrapper {
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.global-nav {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: @nav-h;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 @nav-px;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-logo {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: clamp(6px, 0.5vw, 12px);
|
||||||
|
.logo-img {
|
||||||
|
height: clamp(28px, 2.5vh, 52px);
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo-text {
|
||||||
|
font-weight: 600;
|
||||||
|
color: #333;
|
||||||
|
font-size: clamp(12px, 1vw, 18px);
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-links {
|
||||||
|
display: flex;
|
||||||
|
gap: clamp(16px, 2vw, 48px);
|
||||||
|
list-style: none;
|
||||||
|
a {
|
||||||
|
font-size: clamp(12px, 1vw, 18px);
|
||||||
|
color: #000;
|
||||||
|
font-weight: 600;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color 0.3s;
|
||||||
|
&:hover { color: #00BFA5; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
BIN
src/assets/images/android-two.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
src/assets/images/android.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
src/assets/images/appStore-two.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
src/assets/images/appStore.png
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
src/assets/images/two-1.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
src/assets/images/two-2.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
src/assets/images/two-3.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
src/assets/images/two-phone.png
Normal file
|
After Width: | Height: | Size: 2.8 MiB |
@@ -3,9 +3,9 @@
|
|||||||
// clamp(min, preferred, max) 在 1280px~3840px 间线性缩放
|
// clamp(min, preferred, max) 在 1280px~3840px 间线性缩放
|
||||||
|
|
||||||
// 字体
|
// 字体
|
||||||
@font-hero: clamp(28px, 2.5vw, 64px); // 首页大标题
|
@font-hero: clamp(22px, 2.7vw, 72px); // 首页大标题
|
||||||
@font-title: clamp(24px, 2.2vw, 52px); // 各页标题
|
@font-title: clamp(24px, 2.2vw, 52px); // 各页标题
|
||||||
@font-desc: clamp(13px, 0.9vw, 20px); // 描述文字
|
@font-desc: clamp(13px, 1.3vw, 30px); // 描述文字
|
||||||
@font-nav: clamp(12px, 1vw, 18px); // 导航文字
|
@font-nav: clamp(12px, 1vw, 18px); // 导航文字
|
||||||
@font-btn: clamp(12px, 1vw, 18px); // 按钮文字
|
@font-btn: clamp(12px, 1vw, 18px); // 按钮文字
|
||||||
@font-small: clamp(11px, 0.65vw, 15px); // 小字
|
@font-small: clamp(11px, 0.65vw, 15px); // 小字
|
||||||
|
|||||||
@@ -3,17 +3,6 @@
|
|||||||
<!-- 背景图层 -->
|
<!-- 背景图层 -->
|
||||||
<img src="/src/assets/images/bg-top.png" class="bg-main" />
|
<img src="/src/assets/images/bg-top.png" class="bg-main" />
|
||||||
<img src="/src/assets/images/bg-top-points.png" class="bg-points" />
|
<img src="/src/assets/images/bg-top-points.png" class="bg-points" />
|
||||||
<nav class="nav">
|
|
||||||
<div class="nav-logo">
|
|
||||||
<image src="/src/assets/images/logo-top.png" class="logo-img"></image>
|
|
||||||
<span class="logo-text">Key of Love</span>
|
|
||||||
</div>
|
|
||||||
<ul class="nav-links">
|
|
||||||
<li><a href="#">Home</a></li>
|
|
||||||
<li><a href="#">Privacy Agreement</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
<div class="bg-points"></div>
|
|
||||||
<div class="hero">
|
<div class="hero">
|
||||||
<div class="hero-phones">
|
<div class="hero-phones">
|
||||||
<div class="hero-content">
|
<div class="hero-content">
|
||||||
@@ -22,12 +11,8 @@
|
|||||||
giving meaning to every click
|
giving meaning to every click
|
||||||
</h1>
|
</h1>
|
||||||
<div class="hero-buttons">
|
<div class="hero-buttons">
|
||||||
<a href="#" class="btn btn-primary">
|
<a href="#"><img src="/src/assets/images/android.png" class="btn-img" /></a>
|
||||||
<span class="btn-icon">▶</span> Android
|
<a href="#"><img src="/src/assets/images/appStore.png" class="btn-img" /></a>
|
||||||
</a>
|
|
||||||
<a href="#" class="btn btn-primary">
|
|
||||||
<span class="btn-icon">🍎</span> App Store
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img src="/src/assets/images/bg-top-phone.png" class="phone-main" />
|
<img src="/src/assets/images/bg-top-phone.png" class="phone-main" />
|
||||||
@@ -71,8 +56,8 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
width: 90%;
|
width: 96%;
|
||||||
height: 90%;
|
height: 96%;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
@@ -150,10 +135,20 @@
|
|||||||
|
|
||||||
.hero-buttons {
|
.hero-buttons {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: clamp(10px, 1vw, 24px);
|
gap: clamp(10px, 3vw, 35px);
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-img {
|
||||||
|
height: clamp(36px, 6.6vh, 120px);
|
||||||
|
width: auto;
|
||||||
|
display: block;
|
||||||
|
transition: transform 0.3s;
|
||||||
|
&:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -195,7 +190,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.phone-main {
|
.phone-main {
|
||||||
height: clamp(320px, 52vh, 680px);
|
height: clamp(330px, 58vh, 780px);
|
||||||
width: auto;
|
width: auto;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,36 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="page page-product">
|
<section class="page page-product">
|
||||||
<div class="content-wrapper">
|
<div class="card">
|
||||||
<div class="text-side">
|
<div class="content-wrapper">
|
||||||
<h2 class="section-title">
|
<div class="text-side">
|
||||||
Customize Keyboard<br />
|
<div class="title-wrap">
|
||||||
Define Chat Style
|
<h2 class="section-title">
|
||||||
</h2>
|
Customize Keyboard<br />
|
||||||
<p class="section-desc">
|
Define Chat Style
|
||||||
个性化键盘定制,定义你的聊天风格。丰富的主题与样式,让每一次输入都与众不同。
|
</h2>
|
||||||
</p>
|
<img src="/src/assets/images/two-1.png" class="deco-1" />
|
||||||
</div>
|
<img src="/src/assets/images/two-2.png" class="deco-2" />
|
||||||
<div class="image-side">
|
</div>
|
||||||
<div class="phone-placeholder"><span>手机截图</span></div>
|
<div class="desc-wrap">
|
||||||
|
<p class="section-desc">
|
||||||
|
Spice up your keyboard with one-of-a-kind skins and customize its look to the fullest—your chat style is one-of-a-kind, and your keyboard should be too.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="btns-wrap">
|
||||||
|
<div class="download-btns">
|
||||||
|
<a href="#"><img src="/src/assets/images/android-two.png" class="btn-img" /></a>
|
||||||
|
<a href="#"><img src="/src/assets/images/appStore-two.png" class="btn-img" /></a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<img src="/src/assets/images/two-3.png" class="deco-3" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="deco deco-1">🎨</div>
|
<img src="/src/assets/images/two-phone.png" class="two-phone" />
|
||||||
<div class="deco deco-2">⌨️</div>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -27,31 +42,80 @@
|
|||||||
.page-product {
|
.page-product {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background: #00BFA5;
|
background: #ffffff;
|
||||||
color: #fff;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
padding: 10vh 6vw 12vh 6vw;
|
||||||
|
box-sizing: border-box;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: #02BEAC;
|
||||||
|
border-radius: clamp(16px, 2vw, 40px);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-wrapper {
|
.content-wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: flex-start;
|
||||||
gap: @gap-section;
|
gap: @gap-section;
|
||||||
max-width: @content-max;
|
max-width: @content-max;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0 @gap-content;
|
padding: 0 clamp(30px, 3vw, 100px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-side { flex: 1; }
|
.text-side { flex: 1; max-width: clamp(300px, 38vw, 680px); }
|
||||||
|
|
||||||
|
.title-wrap {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.desc-wrap {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btns-wrap {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deco-1 {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: -10%;
|
||||||
|
width: clamp(40px, 6vw, 140px);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deco-2 {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -200%;
|
||||||
|
right: -10%;
|
||||||
|
width: clamp(50px, 14vw, 400px);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deco-3 {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -200%;
|
||||||
|
left: 0;
|
||||||
|
width: clamp(50px, 8vw, 200px);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
.section-title {
|
.section-title {
|
||||||
font-size: @font-title;
|
font-size: clamp(30px, 3.4vw, 170px);
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
line-height: 1.25;
|
line-height: 1.2;
|
||||||
margin-bottom: clamp(12px, 1.2vh, 28px);
|
margin-bottom: clamp(12px, 1.2vh, 28px);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
@@ -59,8 +123,21 @@
|
|||||||
.section-desc {
|
.section-desc {
|
||||||
font-size: @font-desc;
|
font-size: @font-desc;
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
color: rgba(255, 255, 255, 0.85);
|
color: rgb(255, 255, 255);
|
||||||
max-width: clamp(260px, 22vw, 480px);
|
margin-bottom: clamp(16px, 5vh, 60px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.download-btns {
|
||||||
|
display: flex;
|
||||||
|
gap: clamp(10px, 3vw, 35px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-img {
|
||||||
|
height: clamp(36px, 6.6vh, 120px);
|
||||||
|
width: auto;
|
||||||
|
display: block;
|
||||||
|
transition: transform 0.3s;
|
||||||
|
&:hover { transform: translateY(-2px); }
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-side {
|
.image-side {
|
||||||
@@ -82,19 +159,13 @@
|
|||||||
background: rgba(255, 255, 255, 0.08);
|
background: rgba(255, 255, 255, 0.08);
|
||||||
}
|
}
|
||||||
|
|
||||||
.deco {
|
.two-phone {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-size: clamp(24px, 2.5vw, 60px);
|
right: 8vh;
|
||||||
opacity: 0.3;
|
bottom: -9vh;
|
||||||
animation: float 3.5s ease-in-out infinite;
|
height: clamp(200px, 100vh, 2000px);
|
||||||
}
|
width: auto;
|
||||||
|
pointer-events: none;
|
||||||
.deco-1 { top: 12%; right: 10%; animation-delay: 0s; }
|
|
||||||
.deco-2 { bottom: 15%; left: 8%; animation-delay: 1s; }
|
|
||||||
|
|
||||||
@keyframes float {
|
|
||||||
0%, 100% { transform: translateY(0); }
|
|
||||||
50% { transform: translateY(-12px); }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
@@ -106,5 +177,6 @@
|
|||||||
.section-title { text-align: center; }
|
.section-title { text-align: center; }
|
||||||
.section-desc { text-align: center; }
|
.section-desc { text-align: center; }
|
||||||
.phone-placeholder { width: 180px; height: 333px; }
|
.phone-placeholder { width: 180px; height: 333px; }
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||