<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>清新导航跳转页</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #fce3f3, #e6c2ff);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
}
.container {
text-align: center;
padding: 40px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
animation: fadeIn 1.5s ease-in-out;
position: relative;
}
/* 简洁的几何形状:装饰用的小三角形 */
.triangle {
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 20px solid #d89eff;
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
}
.logo {
width: 120px;
height: 120px;
margin-bottom: 30px;
background-color: #d89eff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 30px;
animation: bounce 1.5s infinite alternate;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); /* 柔和的光影:投影 */
}
.logo img {
width: 60%;
}
h1 {
color: #553355;
margin-bottom: 20px;
font-family: 'Pacifico', cursive; /* 独特的字体排版:使用手写风格字体 */
letter-spacing: 2px; /* 独特的字体排版:增加字间距 */
}
p {
color: #886688;
margin-bottom: 40px;
line-height: 1.6; /* 独特的字体排版:增加行间距 */
}
.button-container {
display: flex;
justify-content: center;
gap: 20px;
}
.btn {
padding: 12px 30px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
.btn-primary {
background-color: #d89eff;
color: white;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* 柔和的光影:投影 */
}
.btn-primary:hover {
background-color: #b366ff;
}
.btn-secondary {
background-color: #f0e6f5;
color: #553355;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); /* 柔和的光影:投影 */
}
.btn-secondary:hover {
background-color: #e6d0ec;
}
/* 简约的线条:分割线 */
.separator {
border-top: 1px solid #ccc;
width: 80%;
margin: 30px auto;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes bounce {
from {
transform: translateY(0);
}
to {
transform: translateY(-15px);
}
}
</style>
<!-- 引入外部字体样式,这里以Pacifico为例,你可以根据喜好更换 -->
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- 简洁的几何形状:小三角形装饰 -->
<div class="triangle"></div>
<div class="logo">
<img src="logo.png" alt="品牌logo">
</div>
<h1>欢迎来到我们的世界</h1>
<p>在这里,开启您的奇妙之旅!</p>
<!-- 简约的线条:分割线 -->
<div class="separator"></div>
<div class="button-container">
<button class="btn btn-primary">立即开始</button>
<button class="btn btn-secondary">了解更多</button>
</div>
</div>
</body>
</html>
佛系原创粉色系清新风格个人引导页面
一言准备中...
- 本文链接:
- http://bk.gggss.cn/?post=18
- 版权声明:本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。
文章很赞!支持一下吧
还没有人为TA充电
为TA充电
-
支付宝扫一扫
-
微信扫一扫
感谢支持
文章很赞!支持一下吧
这一切,似未曾拥有