This commit is contained in:
Saul Hetherman
2024-10-24 12:00:55 +08:00
parent e434369a8f
commit 5825c8a047

View File

@@ -18,16 +18,17 @@
background-color: white; background-color: white;
padding: 20px; padding: 20px;
border-radius: 10px; border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); box-shadow: 0 0 10px rgba(0,0,0,0.1);
} }
h1 { h1 {
color: #333; color: #333;
text-align: center; text-align: center;
} }
.links { .links, .custom-link {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 10px; gap: 10px;
width: 100%;
} }
a { a {
text-decoration: none; text-decoration: none;
@@ -43,6 +44,32 @@
background-color: #007bff; background-color: #007bff;
color: white; color: white;
} }
.custom-link {
margin-top: 20px;
}
input[type="text"] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #007bff;
border-radius: 5px;
font-size: 18px;
box-sizing: border-box;
}
button {
width: 100%;
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
</style> </style>
</head> </head>
<body> <body>
@@ -52,6 +79,19 @@
<a href="https://drive.uc.cn/">UC 网盘</a> <a href="https://drive.uc.cn/">UC 网盘</a>
<a href="https://pan.quark.cn">夸克网盘</a> <a href="https://pan.quark.cn">夸克网盘</a>
</div> </div>
<div class="custom-link">
<input type="text" id="customUrl" placeholder="输入自定义网址">
<button onclick="goToCustomUrl()">跳转</button>
</div> </div>
</div>
<script>
function goToCustomUrl() {
const customUrl = document.getElementById('customUrl').value.trim();
if (customUrl) {
window.location.href = customUrl.startsWith('http') ? customUrl : 'https://' + customUrl;
}
}
</script>
</body> </body>
</html> </html>