2 Star 2 Fork 2

小白初梦/IBUI个人主页

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 4.36 KB
一键复制 编辑 原始数据 按行查看 历史
小白初梦 提交于 2024-10-07 03:18 . update index.html.
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://dimg04.tripcdn.com/images/0Z037224x8vb7zwajD168.jpg" type="image/ico">
<title>白霜初雪-个人主页</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f0f2f5;
color: #333;
line-height: 1.6;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
background-image: url('bj.png'); /* 随机二次元背景图 */
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
}
.container {
max-width: 600px;
text-align: center;
background-color: rgba(255, 255, 255, 0.8); /* 半透明背景 */
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 40px;
width: 100%;
z-index: 1;
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
color: #41eec39a;
}
h3, h4 {
color: #0099ff;
}
p {
margin-bottom: 20px;
color: #333;
}
img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
border: 3px solid #66c7ff; /* 头像边框颜色 */
}
a {
color: #0078d4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.quote-container {
margin-top: 40px;
font-size: 1.2rem;
color: #6666cc;
}
@media screen and (max-width: 600px) {
.container {
padding: 20px;
}
}
.svg-btn {
position: relative;
display: inline-block;
text-decoration: none;
}
.underline {
position: absolute;
bottom: 20px; /* 底部间距 */
left: 50%;
width: 100%;
height: 2px; /* 下划线的高度 */
background-color: #5ab7ff; /* 下划线颜色 */
transform: translateX(-50%) scaleX(0);
transition: transform 0.3s ease;
}
.svg-btn:hover .underline {
transform: translateX(-50%) scaleX(1); /* 当悬停时,宽度变为100% */
}
</style>
</head>
<body>
<div class="container">
<img src="https://dimg04.tripcdn.com/images/0Z037224x8vb7zwajD168.jpg" alt="头像">
<h1>小白初梦</h1>
<h3>倡导开源、免费、自由</h3>
<p>关于绰号:小白、白霜初雪</p>
<p>个人简介:IT和刷机圈的爱好者、学生;喜欢各种折腾。</p>
<a href="https://tool.gljlw.com/qq/?qq=3596200633" class="svg-btn">
<img src="img/qq.svg" alt="QQ" style="width: 40px; height: 40px; margin-top: 10px;">
<span class="underline"></span>
</a>
<a href="https://space.bilibili.com/3461572311648712" class="svg-btn">
<img src="img/bilibili.svg" alt="B站" style="width: 40px; height: 40px; margin-top: 10px;">
<span class="underline"></span>
</a>
<a href="mailto:baizhanwl@qq.com" class="svg-btn">
<img src="img/email.svg" alt="email" style="width: 40px; height: 40px; margin-top: 10px;">
<span class="underline"></span>
</a>
<a href="http://www.coolapk.com/u/24546177" class="svg-btn">
<img src="img/coolapk.svg" alt="coolapk" style="width: 40px; height: 40px; margin-top: 10px;">
<span class="underline"></span>
</a>
<div class="quote-container" id="quote-container"></div>
<p>&copy; 2024-现在 小白. All rights reserved.</p>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/ibaizhan/ibui-personal-homepage.git
git@gitee.com:ibaizhan/ibui-personal-homepage.git
ibaizhan
ibui-personal-homepage
IBUI个人主页
master

搜索帮助