CINXE.COM
跳转中...
<!DOCTYPE html> <html> <head> <title>跳转中...</title> <style> body { font-family: Arial, sans-serif; background-color: #f2f2f2; text-align: center; padding-top: 100px; } /* 旋转动画 */ @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .spin-loader { width: 40px; height: 40px; margin: 0 auto; border: 4px solid #3498db; border-top-color: transparent; border-radius: 50%; animation: spin 1s linear infinite; } /* 跳跃动画 */ @keyframes bounce { 0%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-20px); } 60% { transform: translateY(-10px); } } .bounce-loader { width: 40px; height: 40px; margin: 0 auto; background-color: #3498db; border-radius: 50%; animation: bounce 1s ease-in-out infinite; } /* 波浪动画 */ @keyframes wave { 0% { transform: translateX(0); } 50% { transform: translateX(-25%); } 100% { transform: translateX(0); } } .wave-loader { width: 100px; height: 40px; margin: 0 auto; background-color: #3498db; border-radius: 50px; animation: wave 2s linear infinite; } h1 { font-size: 24px; color: #333333; margin-top: 20px; } p { font-size: 18px; color: #777777; margin-top: 20px; } strong { color: #333333; } </style> <script type="text/javascript"> window.onload = function () { setTimeout(redirectToExternalLink, 1000); }; function redirectToExternalLink() { var targetUrl = decodeURIComponent('http://www.stdeer.com'); window.location.href = targetUrl; } </script> </head> <body> <!-- 跳跃动画 --> <div class="bounce-loader"></div> <h1>正在跳转到外链页面...</h1> <p>即将跳转到:<strong>http://www.stdeer.com</strong></p> </body> </html>