2024-08-19 10:43:51 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-08-21 08:38:09 +08:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>呀呼</title>
|
|
|
|
|
|
|
|
<script defer src="https://tj.gitee.ltd/script.js" data-website-id="a9ba77e4-d5ee-4440-90c3-d53cf22d0ff0"></script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.main {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
font-size: x-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* From Uiverse.io by Juanes200122 */
|
|
|
|
@keyframes bounce {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
translate: 0px 36px;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
translate: 0px 46px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes bounce2 {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
translate: 0px 46px;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
translate: 0px 56px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes umbral {
|
|
|
|
0% {
|
|
|
|
stop-color: #d3a5102e;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
stop-color: rgba(211, 165, 16, 0.519);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
stop-color: #d3a5102e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes partciles {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
translate: 0px 16px;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
translate: 0px 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#particles {
|
|
|
|
animation: partciles 4s ease-in-out infinite;
|
|
|
|
}
|
|
|
|
#animatedStop {
|
|
|
|
animation: umbral 4s infinite;
|
|
|
|
}
|
|
|
|
#bounce {
|
|
|
|
animation: bounce 4s ease-in-out infinite;
|
|
|
|
translate: 0px 36px;
|
|
|
|
}
|
|
|
|
#bounce2 {
|
|
|
|
animation: bounce2 4s ease-in-out infinite;
|
|
|
|
translate: 0px 46px;
|
|
|
|
animation-delay: 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
2024-08-19 10:43:51 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-08-21 08:38:09 +08:00
|
|
|
<div class="main">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200">
|
|
|
|
<g style="order: -1;">
|
|
|
|
<polygon
|
|
|
|
transform="rotate(45 100 100)"
|
|
|
|
stroke-width="1"
|
|
|
|
stroke="#d3a410"
|
|
|
|
fill="none"
|
|
|
|
points="70,70 148,50 130,130 50,150"
|
|
|
|
id="bounce"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
transform="rotate(45 100 100)"
|
|
|
|
stroke-width="1"
|
|
|
|
stroke="#d3a410"
|
|
|
|
fill="none"
|
|
|
|
points="70,70 148,50 130,130 50,150"
|
|
|
|
id="bounce2"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
transform="rotate(45 100 100)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="#414750"
|
|
|
|
points="70,70 150,50 130,130 50,150"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="url(#gradiente)"
|
|
|
|
points="100,70 150,100 100,130 50,100"
|
|
|
|
></polygon>
|
|
|
|
<defs>
|
|
|
|
<linearGradient y2="100%" x2="10%" y1="0%" x1="0%" id="gradiente">
|
|
|
|
<stop style="stop-color: #1e2026;stop-opacity:1" offset="20%"></stop>
|
|
|
|
<stop style="stop-color:#414750;stop-opacity:1" offset="60%"></stop>
|
|
|
|
</linearGradient>
|
|
|
|
</defs>
|
|
|
|
<polygon
|
|
|
|
transform="translate(20, 31)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="#b7870f"
|
|
|
|
points="80,50 80,75 80,99 40,75"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
transform="translate(20, 31)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="url(#gradiente2)"
|
|
|
|
points="40,-40 80,-40 80,99 40,75"
|
|
|
|
></polygon>
|
|
|
|
<defs>
|
|
|
|
<linearGradient y2="100%" x2="0%" y1="-17%" x1="10%" id="gradiente2">
|
|
|
|
<stop style="stop-color: #d3a51000;stop-opacity:1" offset="20%"></stop>
|
|
|
|
<stop
|
|
|
|
style="stop-color:#d3a51054;stop-opacity:1"
|
|
|
|
offset="100%"
|
|
|
|
id="animatedStop"
|
|
|
|
></stop>
|
|
|
|
</linearGradient>
|
|
|
|
</defs>
|
|
|
|
<polygon
|
|
|
|
transform="rotate(180 100 100) translate(20, 20)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="#d3a410"
|
|
|
|
points="80,50 80,75 80,99 40,75"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
transform="rotate(0 100 100) translate(60, 20)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="url(#gradiente3)"
|
|
|
|
points="40,-40 80,-40 80,85 40,110.2"
|
|
|
|
></polygon>
|
|
|
|
<defs>
|
|
|
|
<linearGradient y2="100%" x2="10%" y1="0%" x1="0%" id="gradiente3">
|
|
|
|
<stop style="stop-color: #d3a51000;stop-opacity:1" offset="20%"></stop>
|
|
|
|
<stop
|
|
|
|
style="stop-color:#d3a51054;stop-opacity:1"
|
|
|
|
offset="100%"
|
|
|
|
id="animatedStop"
|
|
|
|
></stop>
|
|
|
|
</linearGradient>
|
|
|
|
</defs>
|
|
|
|
<polygon
|
|
|
|
transform="rotate(45 100 100) translate(80, 95)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="#ffe4a1"
|
|
|
|
points="5,0 5,5 0,5 0,0"
|
|
|
|
id="particles"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
transform="rotate(45 100 100) translate(80, 55)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="#ccb069"
|
|
|
|
points="6,0 6,6 0,6 0,0"
|
|
|
|
id="particles"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
transform="rotate(45 100 100) translate(70, 80)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="#fff"
|
|
|
|
points="2,0 2,2 0,2 0,0"
|
|
|
|
id="particles"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="#292d34"
|
|
|
|
points="29.5,99.8 100,142 100,172 29.5,130"
|
|
|
|
></polygon>
|
|
|
|
<polygon
|
|
|
|
transform="translate(50, 92)"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke=""
|
|
|
|
fill="#1f2127"
|
|
|
|
points="50,50 120.5,8 120.5,35 50,80"
|
|
|
|
></polygon>
|
|
|
|
</g>
|
|
|
|
</svg>
|
|
|
|
|
|
|
|
<span>即将打开,如果提示非微信官方网页,点击继续访问或者复制页面地址到浏览器打开</span>
|
|
|
|
</div>
|
2024-08-19 10:43:51 +08:00
|
|
|
|
2024-08-21 08:38:09 +08:00
|
|
|
<script>
|
|
|
|
setTimeout(function () {
|
|
|
|
window.location.href = "{{ .url }}";
|
|
|
|
}, 2000);
|
|
|
|
</script>
|
2024-08-19 10:43:51 +08:00
|
|
|
</body>
|
|
|
|
</html>
|