File size: 1,744 Bytes
15f87d2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
<!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>
|