76 lines
2.4 KiB
HTML
76 lines
2.4 KiB
HTML
<html>
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>空调炸炸排行榜</title>
|
||
</head>
|
||
<body>
|
||
<div class="box">
|
||
<div class="text">位居全球第 <span id="ranking" class="ranking">200</span>!</div>
|
||
<div class="text-2">您的群总共坏了 <span id="number" class="number">200</span> 台空调</div>
|
||
<img class="background" src="./assets/background.png" alt="空调炸炸排行榜">
|
||
</div>
|
||
</body>
|
||
<style>
|
||
.box {
|
||
position: relative;
|
||
width: 1024px;
|
||
}
|
||
.number {
|
||
font-size: 2em;
|
||
color: #ffdd00;
|
||
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
|
||
font-weight: bold;
|
||
font-stretch: 50%;
|
||
max-width: 520px;
|
||
word-wrap: break-word;
|
||
line-height: 0.8em;
|
||
}
|
||
.background {
|
||
width: 1024px;
|
||
}
|
||
.text {
|
||
position: absolute;
|
||
top: 125px;
|
||
width: 100%;
|
||
font-size: 72px;
|
||
color: white;
|
||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
|
||
font-weight: bolder;
|
||
display: flex;
|
||
align-items: baseline;
|
||
justify-content: center;
|
||
}
|
||
.text-2 {
|
||
position: absolute;
|
||
top: 50px;
|
||
width: 100%;
|
||
font-size: 48px;
|
||
color: white;
|
||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
|
||
font-weight: bolder;
|
||
display: flex;
|
||
align-items: baseline;
|
||
justify-content: center;
|
||
}
|
||
.ranking {
|
||
font-size: 2em;
|
||
color: #ff0000;
|
||
-webkit-text-stroke: #ffffff 2px;
|
||
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
|
||
font-weight: bold;
|
||
font-stretch: 50%;
|
||
}
|
||
</style>
|
||
<script>
|
||
// 从 URL 参数中获取 number 的值
|
||
const urlParams = new URLSearchParams(window.location.search);
|
||
const number = urlParams.get('number');
|
||
// 将 number 显示在页面上
|
||
document.getElementById('number').textContent = number;
|
||
// 从 URL 参数中获取 ranking 的值
|
||
const ranking = urlParams.get('ranking');
|
||
// 将 ranking 显示在页面上
|
||
document.getElementById('ranking').textContent = ranking;
|
||
</script>
|
||
</html> |