demo / page.html
lixiang6's picture
Upload 19 files
15f87d2 verified
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>跳转页面</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
font-family: 'Orbitron', sans-serif;
color: #00ffe7;
overflow: hidden;
}
button {
font-size: 24px;
padding: 15px 30px;
background: rgba(0, 255, 231, 0.2);
border: 2px solid #00ffe7;
border-radius: 12px;
color: #00ffe7;
cursor: pointer;
box-shadow: 0 0 15px #00ffe7;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
}
button:hover {
background: rgba(0, 255, 231, 0.4);
box-shadow: 0 0 25px #00ffe7;
transform: scale(1.05);
}
.glow {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(0, 255, 231, 0.1) 0%, transparent 70%);
animation: pulse 5s infinite;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.2); opacity: 0.2; }
100% { transform: scale(1); opacity: 0.5; }
}
</style>
</head>
<body>
<div class="glow"></div>
<button onclick="window.location.href='http://localhost:7861/'">gogogo</button>
</body>
</html>