MediaWiki:Common.js:修订间差异

MediaWiki界面页面
(撤销Aurora Lemon讨论)的版本6871)
标签撤销
无编辑摘要
第3行: 第3行:


    if ($("#live-player-status").length > 0) {
    if ($("#live-player-status").length > 0) {
    $.getJSON("https://mcapi.us/server/status?ip=helium.hydcraft.cn&port=25565")
    .done(function (data) {
     var curPlayers = data.players.now;
     var maxPlayers = data.players.max;
     var width = curPlayers / maxPlayers;


   $.ajax({
      var statusText = "服务器在线人数 " + curPlayers + " / " + maxPlayers;
     type: "GET",
 
     url: "https://he-api.hydcraft.cn/",
     $("#live-player-status").html(statusText);
     dataType: "jsonp",
     $("#live-player-progress").css("background-color" , "#096dd9");
      jsonp: "callback",
     $("#live-player-progress").width(width * 100 + '%'); 
     success: function (data) {
    })
       var curPlayers = data.current_players;
   
       var maxPlayers = data.max_players;
    .fail(function (xhr) {
       var width = curPlayers / maxPlayers;
     if (xhr.status == 502) {
  
      $("#live-player-status").html("服务端未启动。");
       var statusText = "服务器在线人数" + data.current_players + " / " + data.max_players;
     } else {
  
      $("#live-player-status").html("无法获取信息,错误值:" + xhr.status + "。");
       $("#live-player-status").html(statusText);
      $("#live-player-progress").width(100 + '%'); 
       $("#live-player-progress").width(width + '%'); 
      $("#live-player-progress").css("background-color" , "#ff0000"); 
     },
     error: function (xhr) {
       if (xhr.status == 502) {
         $("#live-player-status").html("服务端未启动。");
       } else {
         $("#live-player-status").html("无法获取信息,错误值:" + xhr.status + "。");
         $("#live-player-progress").width(100 + '%'); 
         $("#live-player-progress").css("background-color" , "#ff0000"); 
       }
      }
      }
     });
    });
 
    }
    }
}());
}());

2023年1月8日 (日) 01:12的版本

/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */
$(function() {

    if ($("#live-player-status").length > 0) {
      $.getJSON("https://mcapi.us/server/status?ip=helium.hydcraft.cn&port=25565")
      .done(function (data) {
        var curPlayers = data.players.now;
        var maxPlayers = data.players.max;
        var width = curPlayers / maxPlayers;

        var statusText = "服务器在线人数 " + curPlayers + " / " + maxPlayers;

        $("#live-player-status").html(statusText);
        $("#live-player-progress").css("background-color" , "#096dd9"); 
        $("#live-player-progress").width(width * 100 + '%'); 
      })
      
      .fail(function (xhr) {
        if (xhr.status == 502) {
          $("#live-player-status").html("服务端未启动。");
        } else {
          $("#live-player-status").html("无法获取信息,错误值:" + xhr.status + "。");
          $("#live-player-progress").width(100 + '%'); 
          $("#live-player-progress").css("background-color" , "#ff0000"); 
        }
      });

    }

}());
为了让您的浏览体验更加高效、方便和个性化,遵照《中华人民共和国网络安全法》和《信息安全技术个人信息安全规范》,我们需要您允许本站使用Cookies。在某些情况下,Cookies是使网站正常运行的必要条件。