https://shmuker.oss-cn-hangzhou.aliyuncs.com/

Submitted URL:
https://shmuker.oss-cn-hangzhou.aliyuncs.com/
Report Finished:

JavaScript Variables · 7 found

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
currentTimenumber
endTimenumber
updateCountdownfunction
intervalIdnumber

Console log messages · 2 found

TypeCategoryLog
errornetwork
URL
https://shmuker.oss-cn-hangzhou.aliyuncs.com/
Text
Failed to load resource: the server responded with a status of 404 (Not Found)
errornetwork
URL
https://shmuker.oss-cn-hangzhou.aliyuncs.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 (Not Found)

HTML

<!DOCTYPE html><html lang="en"><head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>The page you're looking for dose not exist.</title>
</head>
<body>
    <style>
      body{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
          .box{
            width: 70%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin: auto;
            .left{
              width: 55%;
              padding: 0px 80px;
              box-sizing: border-box;
              .first{
                color: #4E5969;
                font-size: 48px;
                font-weight: 600;
              }
              .second{
                color: #4E5969;
                font-size: 24px;
                font-weight: 600;
                margin-top: 10px;
              }
              a{
                text-decoration: none;
                color: #4E5969;
                padding: 5px 10px;
                background-color: #CCDBED;
                border-radius: 8px;
                display: inline-block;
                margin-top: 20px;
              }
            }
            .right{
              width: 45%;
              img{
                width: 100%;
              }
            }
        }
      }
      @media(max-width:1200px){
        .box{
          .left{
            padding: 0px !important;
          }
        }
      }
      @media(max-width:576px){
        .box{
          width: 100% !important;
          .left{
            width: 100% !important;
            padding: 0px !important;
          }
          .right{
            width: 100% !important;
            padding: 0px !important;
          }
        }
      }

    </style>
    <div class="box">
        <div class="left">
            <div class="first">
                Oops!
            </div>
            <div class="second">
                <p>The page you're looking for dose not exist.</p>
                <p>Let's get you back home.</p>
            </div>
            <div class="btn">
                <span><p id="countdown">It will jump automatically after 5 seconds!</p>
                </span><a href="/">Go Home</a>
            </div>
        </div>
        <div class="right">
            <img src="https://shmuker.oss-cn-hangzhou.aliyuncs.com/tmp/temporary/635f7c82b1949146405713b3/635f7c83b1949146405713b9/20240430161806/404.png" alt="">
        </div>
    </div>
    <script>
      // 获取当前时间
      var currentTime = new Date().getTime();

      // 设置倒计时结束的时间(当前时间 + 5秒 * 1000毫秒)
      var endTime = currentTime + (5 * 1000);

      // 定义一个函数来更新倒计时
      function updateCountdown() {
          // 计算剩余时间
          var remainingTime = endTime - new Date().getTime();
          
          // 如果剩余时间小于等于0,则跳转到新页面
          if (remainingTime < 0) {
              clearInterval(intervalId); // 清除定时器
              window.location.href = "/"; // 替换为你想要跳转的 URL
          } else {
              // 计算剩余秒数
              var seconds = Math.floor(remainingTime / 1000);
              
              // 更新页面上的倒计时显示
              document.getElementById("countdown").textContent = "It will jump automatically after " + seconds + " seconds!";
          }
      }

      // 开始倒计时
      var intervalId = setInterval(updateCountdown, 1000);
    </script>

</body></html>