update index
This commit is contained in:
358
other_function.html
Normal file
358
other_function.html
Normal file
@@ -0,0 +1,358 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<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:
|
||||
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||
"Helvetica Neue", Arial, sans-serif;
|
||||
background: radial-gradient(
|
||||
circle at center,
|
||||
#ff9a9e 0%,
|
||||
#fad0c4 25%,
|
||||
#fad0c4 50%,
|
||||
#ff9a9e 75%,
|
||||
#fad0c4 100%
|
||||
);
|
||||
background-size: 400% 400%;
|
||||
animation: pinkGlow 10s ease-in-out infinite;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
@keyframes pinkGlow {
|
||||
0%,
|
||||
100% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.container {
|
||||
background: white;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
||||
padding: 60px 40px;
|
||||
text-align: center;
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.container::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
left: -50%;
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fecfef, #fecfef);
|
||||
opacity: 0.15;
|
||||
animation: rotate 10s linear infinite;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.construction-icon {
|
||||
font-size: 80px;
|
||||
margin-bottom: 30px;
|
||||
animation: bounce 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes bounce {
|
||||
0%,
|
||||
20%,
|
||||
50%,
|
||||
80%,
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
40% {
|
||||
transform: translateY(-30px);
|
||||
}
|
||||
60% {
|
||||
transform: translateY(-15px);
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #2c3e50;
|
||||
font-size: 32px;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
display: inline-block;
|
||||
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
|
||||
color: white;
|
||||
padding: 8px 20px;
|
||||
border-radius: 25px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 25px;
|
||||
animation: pulse 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
box-shadow: 0 0 0 0 rgba(238, 90, 36, 0.7);
|
||||
}
|
||||
70% {
|
||||
box-shadow: 0 0 0 15px rgba(238, 90, 36, 0);
|
||||
}
|
||||
100% {
|
||||
box-shadow: 0 0 0 0 rgba(238, 90, 36, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.description {
|
||||
color: #5a6c7d;
|
||||
font-size: 18px;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 30px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.features-coming {
|
||||
background: #f8f9fa;
|
||||
border-radius: 15px;
|
||||
padding: 30px;
|
||||
margin: 30px 0;
|
||||
border-left: 5px solid #3498db;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.features-coming h3 {
|
||||
color: #2c3e50;
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.feature-list {
|
||||
list-style: none;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.feature-list li {
|
||||
padding: 10px 0;
|
||||
color: #5a6c7d;
|
||||
font-size: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.feature-list li::before {
|
||||
content: "🚧";
|
||||
margin-right: 10px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
width: 100%;
|
||||
height: 8px;
|
||||
background: #ecf0f1;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
margin: 20px 0;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, #3498db, #2ecc71);
|
||||
border-radius: 4px;
|
||||
width: 30%;
|
||||
animation: progressAnimation 3s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes progressAnimation {
|
||||
from {
|
||||
width: 30%;
|
||||
}
|
||||
to {
|
||||
width: 65%;
|
||||
}
|
||||
}
|
||||
|
||||
.progress-text {
|
||||
color: #7f8c8d;
|
||||
font-size: 14px;
|
||||
margin-top: 10px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.particles {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.particle {
|
||||
position: absolute;
|
||||
background: #ff9a9e;
|
||||
border-radius: 50%;
|
||||
opacity: 0.15;
|
||||
animation: float 6s infinite ease-in-out;
|
||||
}
|
||||
|
||||
.particle:nth-child(1) {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
left: 10%;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
.particle:nth-child(2) {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
left: 30%;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
.particle:nth-child(3) {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
left: 60%;
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
.particle:nth-child(4) {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
left: 80%;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0%,
|
||||
100% {
|
||||
transform: translateY(0) rotate(0deg);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-20px) rotate(180deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="particles">
|
||||
<div class="particle"></div>
|
||||
<div class="particle"></div>
|
||||
<div class="particle"></div>
|
||||
<div class="particle"></div>
|
||||
</div>
|
||||
|
||||
<div class="construction-icon">🚧</div>
|
||||
<h1>其他功能</h1>
|
||||
<div class="status-badge">正在开发中</div>
|
||||
|
||||
<p class="description">
|
||||
更多实用功能正在紧张开发中,敬请期待!我们正在为您打造更加完善的工具集合。
|
||||
</p>
|
||||
|
||||
<div class="features-coming">
|
||||
<h3>🔮 即将推出的功能</h3>
|
||||
<ul class="feature-list">
|
||||
<li>文本处理工具</li>
|
||||
<li>图片压缩工具</li>
|
||||
<li>二维码生成器</li>
|
||||
<li>密码生成器</li>
|
||||
<li>单位转换工具</li>
|
||||
<li>时间戳转换器</li>
|
||||
<li>JSON格式化工具</li>
|
||||
<li>Base64编码工具</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill"></div>
|
||||
</div>
|
||||
<div class="progress-text">开发进度:约 40% 完成</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// 添加一些动态交互效果
|
||||
document.addEventListener("DOMContentLoaded", function () {
|
||||
// 随机改变粒子的动画时间
|
||||
const particles = document.querySelectorAll(".particle");
|
||||
particles.forEach((particle, index) => {
|
||||
const randomDelay = Math.random() * 3;
|
||||
const randomDuration = 4 + Math.random() * 4;
|
||||
particle.style.animationDelay = `${randomDelay}s`;
|
||||
particle.style.animationDuration = `${randomDuration}s`;
|
||||
});
|
||||
|
||||
// 添加点击效果
|
||||
const container = document.querySelector(".container");
|
||||
container.addEventListener("click", function (e) {
|
||||
const ripple = document.createElement("div");
|
||||
ripple.style.position = "absolute";
|
||||
ripple.style.width = "20px";
|
||||
ripple.style.height = "20px";
|
||||
ripple.style.background = "rgba(255, 154, 158, 0.5)";
|
||||
ripple.style.borderRadius = "50%";
|
||||
ripple.style.transform = "translate(-50%, -50%)";
|
||||
ripple.style.pointerEvents = "none";
|
||||
ripple.style.left = e.clientX - container.offsetLeft + "px";
|
||||
ripple.style.top = e.clientY - container.offsetTop + "px";
|
||||
ripple.style.animation = "rippleEffect 0.6s ease-out";
|
||||
|
||||
container.appendChild(ripple);
|
||||
|
||||
setTimeout(() => {
|
||||
ripple.remove();
|
||||
}, 600);
|
||||
});
|
||||
});
|
||||
|
||||
// 添加涟漪动画
|
||||
const style = document.createElement("style");
|
||||
style.textContent = `
|
||||
@keyframes rippleEffect {
|
||||
to {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
`;
|
||||
document.head.appendChild(style);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user