warlight

Warlight Userscript

当前为 2015-04-04 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name warlight
  3. // @grant none
  4. // @match https://www.warlight.net/MultiPlayer/
  5. // @description Warlight Userscript
  6. // @version 0.0.1.20150404102520
  7. // @namespace https://gf.qytechs.cn/users/10154
  8. // ==/UserScript==
  9.  
  10.  
  11. /*
  12. * Userscript Settings
  13. */
  14.  
  15. var inputs = "";
  16. inputs += '<label for="scrollGames">Fixed window with scrollable Games</label><input type="checkbox" id="scrollGames"><br>';
  17. inputs += '<label for="hideMyGamesIcons">Hide Icons in "My Games"</label><input type="checkbox" id="hideMyGamesIcons"><br>';
  18. inputs += '<label for="autoRefreshOnFocus">Automatically refresh Games on Tabfocus</label><input type="checkbox" id="autoRefreshOnFocus"><br>';
  19. inputs += '<label for="hightlightTournaments">Hightlight Tournament invites</label><input type="checkbox" id="hightlightTournaments"><br>';
  20. inputs += '<div class="close-userscript">Close and Refresh</div>';
  21.  
  22. lastRefresh = new Date()
  23. $("#RefreshBtn").replaceWith($("#RefreshBtn").clone().removeAttr("id").attr("id","refreshAll"));
  24. $("#refreshAll").on("click", function() {
  25. if(new Date() - lastRefresh > 3000) {
  26. lastRefresh = new Date()
  27. refreshAll();
  28. }
  29. })
  30.  
  31.  
  32. $("body").append("<div class='userscript-container userscript-show'></div><div class='userscript userscript-show'><div class='head'>Change Userscript Settings<img class='close-userscript-img' src='https://i.imgur.com/RItbpDS.png' height='25' width='25'></div>"+inputs+"</div>");
  33.  
  34. $(".userscript").on("change", function() {
  35. storeVariables();
  36. })
  37.  
  38. /*
  39. * Read Localstorage
  40. */
  41.  
  42. var scrollGames = localStorage.getItem("scrollGames") == "true";
  43. $("#scrollGames").prop("checked", scrollGames)
  44.  
  45. var autoRefreshOnFocus = localStorage.getItem("autoRefreshOnFocus") == "true";
  46. $("#autoRefreshOnFocus").prop("checked", autoRefreshOnFocus)
  47.  
  48. var hightlightTournaments = localStorage.getItem("hightlightTournaments") == "true";
  49. $("#hightlightTournaments").prop("checked", hightlightTournaments)
  50.  
  51. var hideMyGamesIcons = localStorage.getItem("hideMyGamesIcons") == "true";
  52. $("#hideMyGamesIcons").prop("checked", hideMyGamesIcons)
  53. var hideCoinSymbol = true;
  54.  
  55. /*
  56. * Hide coin Symbol
  57. */
  58. if(hideCoinSymbol) {
  59. createSelector('#PromotedGamesTable td:last-of-type a img', 'display:none')
  60. }
  61.  
  62. /*
  63. * Delayed Functions
  64. */
  65. var showAllGames = "";
  66. var showAllCoinGames = "";
  67. styleInterval = setInterval(delayed, 100);
  68. setTimeout(function() { clearInterval(styleInterval)}, 3000);
  69.  
  70. /*
  71. * Refresh Animation
  72. */
  73. $("#OpenGamesTable").prepend("<div class='loading loading-open'><img src='https://www.adobe.com/business/calculator/VIP/image/loader.gif' height='32' width='32'></div>");
  74. $("#MyGamesTable").prepend("<div class='loading loading-my'><img src='https://www.adobe.com/business/calculator/VIP/image/loader.gif' height='32' width='32'></div>");
  75. $("#PromotedGamesTable").prepend("<div class='loading loading-prom'><img src='https://www.adobe.com/business/calculator/VIP/image/loader.gif' height='32' width='32'></div>");
  76.  
  77. $("label[for='Refresh']").on("click", function() {
  78. refreshAll();
  79. })
  80.  
  81. var lastRefresh = new Date();
  82. if(autoRefreshOnFocus) {
  83. $(window).on('focus', function() {
  84. if(new Date() - lastRefresh > 30000) {
  85. lastRefresh = new Date()
  86. refreshAll();
  87. }
  88. });
  89. }
  90.  
  91.  
  92. $("body").keyup(function(event){
  93. //R
  94. if(event.which == 82) {
  95. if(new Date() - lastRefresh > 3000) {
  96. lastRefresh = new Date()
  97. refreshAll();
  98. }
  99. }
  100. });
  101.  
  102. /*
  103. * Highlight Tournaments
  104. */
  105. if(hightlightTournaments) {
  106. createSelector("#MyTournamentsTable tbody", "background:#4C4C33;");
  107. }
  108.  
  109. /*
  110. * Hide Icons in My Games
  111. */
  112. if(hideMyGamesIcons) {
  113. createSelector("#MyGamesTable td img", "display:none;");
  114. //createSelector("#MyGamesTable .GameRow br:last-of-type", "display:none;");
  115. }
  116.  
  117.  
  118. /*
  119. * CSS
  120. */
  121. /**/
  122. //createSelector("#MyGamesTable, #OpenGamesTable, #PromotedGamesTable", "display: block;overflow: hidden;position:relative");
  123. createSelector(".GameRow a", "font-size:16px !important;");
  124. createSelector(".GameRow td:last-of-type span,#OpenGamesTable .GameRow td:last-of-type span:first-child, #PromotedGamesTable .GameRow td:last-of-type span:first-child", "margin:5px 0px;position:relative !important;z-index:10;");
  125. createSelector("#MyGamesTable a img, #MyGamesTable span img", "display:inline-block;");
  126. createSelector(".GameRow:hover", "background-color:rgb(50, 50, 50);cursor:pointer;");
  127. createSelector(".BootTimeLabel", "color:white !important;font-weight:normal!important;font-style:italic;font-size:13px!important;z-index:50;");
  128. createSelector(".GameRow a:hover", "text-decoration:none;");
  129. createSelector(".ui-buttonset label", "font-size:11px;");
  130. createSelector("#OpenGamesTable label:hover", " border: 1px solid #59b4d4;background: #0078a3 50% 50% repeat-x;font-weight: bold;color: #ffffff;");
  131. createSelector("#OpenGamesTable td:last-child,#MyGamesTable td:last-child, #PromotedGamesTable td:last-child" , "position: relative;");
  132. //createSelector("#PromotedGamesTable tbody td:nth-of-type(2),#OpenGamesTable tbody td:nth-of-type(2), #MyGamesTable tbody td:nth-of-type(2)","display: inline-block;width: 402px;")
  133. createSelector("#OpenGamesTable td:nth-child(2) a,#MyGamesTable td:nth-child(2) a, #PromotedGamesTable td:nth-child(2) a", " display: block;width: 100%;height: 100%;float: left;position: absolute;margin-top: -5px;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;");
  134. createSelector(".loading", "position: absolute;height: 100%;width: 100%;background-color: rgba(255, 255, 255, 0.2);text-align: center;z-index: 12;margin-top: 34px;display:none;");
  135. createSelector(".loading img", "position: absolute;top: 50%;left: 50%;margin-left: -16px;margin-top: -16px;");
  136. createSelector("img", "position: relative;z-index:50;");
  137. createSelector("input", "z-index: 1000;position: relative;");
  138. createSelector(".userscript", "position: fixed;width: 420px;left: 50%;background: #171717;margin-left: -250px;top: 100px;z-index: 50000001; color:white;padding:60px 30px 30px 30px;border: 2px solid gray;border-radius:8px");
  139. createSelector(".userscript-menu", "display: block;color: #555;text-decoration: none;line-height: 18px;padding: 3px 15px;margin: 0;white-space: nowrap;")
  140. createSelector(".userscript-menu:hover", "cursor:pointer;background-color: #08C;color: #FFF;cursor: pointer;")
  141. createSelector(".close-userscript", "margin-top: 40px;width: 100%;text-align: center;font-size: 15px;cursor: pointer;background: gray;line-height: 30px;border-radius: 8px;");
  142. createSelector(".close-userscript-img", "float:right;margin:5px;cursor:pointer");
  143. createSelector(".userscript label","width: 80%;display: inline-block;font-size: 15px;margin: 5px;")
  144. createSelector(".userscript input", "width: 20px;height: 20px;margin-left:30px;margin: 5px");
  145. //createSelector("#OpenGamesTable thead tr td h2","margin-right: 57px !important;")
  146. createSelector(".userscript-container","display: block;position: absolute;background: white;top: 0;left: 0;right: 0;bottom: 0;z-index: 50000000;opacity: 0.5;");
  147. createSelector(".userscript .head","position: absolute;height: 40px;background: #330000;width: 100%;left: 0;right: 0;top: 0;color: white;font-size: 15px;text-align: center;line-height: 40px;border-top-left-radius:8px;border-top-right-radius:8px;");
  148. createSelector(".userscript-show","display:none");
  149. createSelector(".showGames table thead td","display:table-cell;width:100%;");
  150. createSelector(".showGames table thead tr","display:table;width:100%;");
  151. /**/
  152.  
  153.  
  154.  
  155.  
  156. /*
  157. * Single Column Fixed
  158. */
  159. var gameButtons = "";
  160. var showGamesActive = "ShowMyGames";
  161. //var fakeRow = '<tr class="fakerow" style="display: block;"><td colspan="2"><a href="#" id="ShowMorePromotedGamesLink">+ Show 6 more promoted games</a><a href="/Coins/CreateGame" style="float:right">Create a coin game</a></td></tr>';
  162. var fakeRow = '<tr class="fakerow" style="display: block;"><td colspan="2"><div id="">If you see this your are cool cool cool cool cool</div></td></tr>';
  163.  
  164.  
  165. if(scrollGames) {
  166. gameButtons = '<div style="margin: 10px;" id="switchGameRadio" class="ui-buttonset"><input type="radio" id="ShowMyGames" name="switchGames" checked="checked" class="ui-helper-hidden-accessible"><label for="ShowMyGames" class="ui-state-active ui-button ui-widget ui-state-default ui-button-text-only ui-corner-left" role="button"><span class="ui-button-text">My Games</span></label><input type="radio" id="ShowOpenGames" name="switchGames" class="ui-helper-hidden-accessible"><label for="ShowOpenGames" class="ui-button ui-widget ui-state-default ui-button-text-only" role="button"><span class="ui-button-text">Open Games</span></label><input type="radio" id="ShowCoinGames" name="switchGames" class="ui-helper-hidden-accessible"><label for="ShowCoinGames" class="ui-button ui-widget ui-state-default ui-button-text-only ui-corner-right" role="button"><span class="ui-button-text">Coin Games</span></label></div>';
  167. $(".MainColumn ").prepend('<div class="showGamesContainer">'+gameButtons+'<div class="showGames"></div></div>');
  168. $("#MyGamesTable").appendTo(".showGames");
  169. $(".MainColumn ").after('<div class="showSide"></div>');
  170. $(".SideColumn").appendTo(".showSide");
  171. /*
  172. * Fixed Titles
  173. */
  174. $("#BlogTable").before("<div class='followMeBar'>"+ $("#BlogTable > thead > tr > td").html() + "</div>");
  175. $("#RealTimeLadderTable").before("<div class='followMeBar'>"+ $("#RealTimeLadderTable > thead > tr > td").html() + "</div>");
  176. $("#ForumTable").before("<div class='followMeBar'>"+ $("#ForumTable > thead > tr > td").html() + "</div>");
  177. $("#ClanForumTable").before("<div class='followMeBar'>"+ $("#ClanForumTable > thead > tr > td").html() + "</div>");
  178. $("#MapOfTheWeekTable").before("<div class='followMeBar'>"+ $("#MapOfTheWeekTable > thead > tr > td").html() + "</div>");
  179. $("#LeaderboardTable").before("<div class='followMeBar'>"+ $("#LeaderboardTable > thead > tr > td").html() + "</div>");
  180. $("#MyTournamentsTable").before("<div class='followMeBar'>"+ $("#MyTournamentsTable > thead > tr > td").html() + "</div>");
  181. createSelector(".followMeBar","background: #330000;padding: 5px 20px;position: relative;z-index: 1;color: #fff;border-top-right-radius:8px;border-top-left-radius:8px;border: 1px solid gray;border-bottom:none");
  182. //createSelector(".followMeBar.fixed","position: fixed;top: 0;width: 100%;box-sizing: border-box;z-index: 0;");
  183. var top = parseInt($(".showSide").offset().top) +parseInt(43);
  184. var width = 450;
  185. createSelector(".followMeBar.fixed","position: fixed;top: "+ top +"px;width: 100%;box-sizing: border-box;z-index: 0;width:"+width+"px;z-index:100;");
  186. createSelector(".followMeBar.fixed.absolute","position: absolute;");
  187. createSelector(".showSide", "overflow-y:scroll;float: left;margin-top: 43px;padding-right: 6px;");
  188. createSelector(".showSide thead", "display:none");
  189. createSelector(".showSide table", "border-top-right-radius:0;border-top-left-radius:0");
  190. /**
  191. * Other CSS
  192. */
  193. createSelector("#switchGameRadio label","margin-left: 6px !important")
  194. createSelector(".showGames table","display:block !important")
  195. createSelector("#switchGameRadio label:hover", "border: 1px solid rgb(89, 180, 212);border-image-source: initial;border-image-slice: initial;border-image-width: initial;border-image-outset: initial;border-image-repeat: initial;background:rgb(0, 120, 163);font-weight: bold;color: rgb(255, 255, 255);")
  196. createSelector("#MyGamesTable, #PromotedGamesTable, #OpenGamesTable","display:none")
  197. createSelector("#MainSiteContent > table > tbody > tr > td","width:100%")
  198. createSelector(".showGamesContainer", "max-width:625px")
  199. createSelector(".MainColumn", "max-width:650px")
  200. createSelector(".SideColumn", "float:left !important")
  201. createSelector("h2 + span", "margin-right: 50px;")
  202. createSelector(".fakerow div", "height: 0px;display: inline-block;opacity: 0;")
  203. createSelector(".fakerow td", "border:none !important")
  204. createSelector("body", "overflow:hidden");
  205. createSelector(".SideColumn", "width: 450px !important; margin-left: 20px;");
  206. createSelector("#MyGamesFilter","width:200px");
  207. createSelector(".showGames table thead","position:fixed; z-index:500; border-top-left-radius:8")
  208. createSelector(".showGames table", "display:block; overflow-y:scroll; overflow-x:hidden; border:1px gray solid; border-radius:8px");
  209. createSelector(".showSide", "overflow-y:scroll;float: left;margin-top: 43px;padding-right: 6px;");
  210. new stickyTitles(jQuery(".followMeBar")).load();
  211. refreshSingleColumnSize()
  212.  
  213. $("#switchGameRadio label").on("click", function() {
  214. var newShowGames = $(this).attr("for");
  215. if(newShowGames != showGamesActive) {
  216. $.each($("#switchGameRadio label"), function( key, value ) {
  217. $(this).removeClass("ui-state-active");
  218. });
  219. $(this).addClass("ui-state-active");
  220.  
  221. if(newShowGames == "ShowMyGames") {
  222. showGamesActive = newShowGames;
  223. $("#PromotedGamesTable").appendTo("body");
  224. $("#OpenGamesTable").appendTo("body");
  225. $("#MyGamesTable").appendTo(".showGames");
  226. }
  227. else if(newShowGames == "ShowCoinGames") {
  228. showGamesActive = newShowGames;
  229. $("#MyGamesTable").appendTo("body");
  230. $("#OpenGamesTable").appendTo("body");
  231. $("#PromotedGamesTable").appendTo(".showGames");
  232. //showAllCoinGames.trigger("click");
  233. }
  234.  
  235. else if(newShowGames == "ShowOpenGames") {
  236. showGamesActive = newShowGames;
  237. $("#MyGamesTable").appendTo("body");
  238. $("#PromotedGamesTable").appendTo("body");
  239. $("#OpenGamesTable").appendTo(".showGames");
  240.  
  241. }
  242. showAllGames.trigger("click");
  243. $(".showGames table tbody").append(fakeRow);
  244. refreshSingleColumnSize()
  245.  
  246. }
  247. });
  248. }
  249.  
  250. $("#TopRightDropDown ul").append('<li><div class="userscript-menu ">Userscript</div></li>')
  251.  
  252.  
  253. $(".userscript-menu").on("click", function() {
  254. $(".userscript-show").fadeToggle();
  255. $("#TopRightDropDown").fadeToggle();
  256. })
  257.  
  258. $(".close-userscript").on("click", function() {
  259. $(".userscript-show").fadeToggle();
  260. location.reload();
  261. })
  262.  
  263. $(".close-userscript-img").on("click", function() {
  264. $(".userscript-show").fadeToggle();
  265. })
  266.  
  267. $("label").on("click", function() {
  268. //showAllGames.trigger("click");
  269. //showAllCoinGames.trigger("click");
  270. })
  271.  
  272. $("label[for='MultiDayRadio']").on("click", function() {
  273. $("#OpenGamesTable").scrollTop(0);
  274. window.setTimeout(function() {
  275. $(".showGames table tbody").append(fakeRow);
  276. }, 10)
  277. })
  278. $("label[for='RealTimeRadio']").on("click", function() {
  279. $("#OpenGamesTable").scrollTop(0);
  280. window.setTimeout(function() {
  281. $(".showGames table tbody").append(fakeRow);
  282. }, 10)
  283. })
  284. $("label[for='BothRadio']").on("click", function() {
  285. $("#OpenGamesTable").scrollTop(0);
  286. window.setTimeout(function() {
  287. $(".showGames table tbody").append(fakeRow);
  288. }, 10)
  289. })
  290.  
  291.  
  292. $( window ).resize(function() {
  293. if(scrollGames) {
  294. refreshSingleColumnSize();
  295. }
  296. });
  297.  
  298.  
  299. function delayed() {
  300. //Expand Games
  301. if(showAllGames == "") {
  302. showAllGames = $("#ShowMoreOpenGamesLink")
  303. showAllGames.trigger("click");
  304. }
  305. if(showAllCoinGames == "") {
  306. showAllCoinGames = $("#ShowMorePromotedGamesLink");
  307. showAllCoinGames.trigger("click");
  308. }
  309. }
  310.  
  311. function storeVariables() {
  312. localStorage.setItem("autoRefreshOnFocus", $("#autoRefreshOnFocus").prop("checked"));
  313. localStorage.setItem("hightlightTournaments", $("#hightlightTournaments").prop("checked"));
  314. localStorage.setItem("hideMyGamesIcons", $("#hideMyGamesIcons").prop("checked"));
  315. localStorage.setItem("scrollGames", $("#scrollGames").prop("checked"));
  316.  
  317. }
  318. function refreshSingleColumnSize() {
  319. $(".showSide").scrollTop(0)
  320. if($(window).width() < 1300) {
  321. $(".MainColumn").css('width', 550);
  322. $("#OpenGamesTable thead tr td h2").css('margin-right', 29);
  323. } else {
  324. $(".MainColumn").css('width', "");
  325. $("#OpenGamesTable thead tr td h2").css('margin-right', 57);
  326. }
  327. $(".followMeBar").each(function(){
  328. $(this).removeClass("fixed");
  329. if($(this).parent().hasClass("followWrap")) {
  330. $(this).unwrap();
  331. }
  332. var thisSticky = $(this).wrap('<div class="followWrap" />');
  333. thisSticky.parent().height(thisSticky.outerHeight());
  334. var pos = parseInt(thisSticky.offset().top) - parseInt($(".showSide").offset().top);
  335. $.data(thisSticky[0], 'pos', pos);
  336. });
  337. $(".fakerow").remove();
  338. $(".showGames table").css({ height:window.innerHeight-150});
  339. $(".showGames table thead").css({ width:$(".showGames").width()-20});
  340. $(".showGames table tbody").append(fakeRow);
  341. var height = $(".showGames table thead").height()+6;
  342. createSelector(".showGames table tbody tr:first-of-type td", "padding-top:"+height+"px");
  343. $(".showSide").css({ height:window.innerHeight-150});
  344. $(".showGames table tbody tr:first-of-type td").css("padding-top", $(".showGames table thead").height()+6)
  345.  
  346. }
  347.  
  348. function refreshHeight() {
  349. $("#MyGamesTable").css({ height:window.innerHeight-110, display:"block", "overflow-y":"scroll", "overflow-x":"hidden", "border":"1px gray solid", "border-radius":"8px"});
  350. $("#OpenGamesTable").css({ height:window.innerHeight-110, display:"block", "overflow-y":"scroll", "overflow-x":"hidden", "border":"1px gray solid", "border-radius":"8px"});
  351. }
  352.  
  353. function createSelector(name,rules){
  354. var style = document.createElement('style');
  355. style.type = 'text/css';
  356. document.getElementsByTagName('head')[0].appendChild(style);
  357. if(!(style.sheet||{}).insertRule)
  358. (style.styleSheet || style.sheet).addRule(name, rules);
  359. else
  360. style.sheet.insertRule(name+"{"+rules+"}",0);
  361. }
  362.  
  363. function refreshAll() {
  364. $("#MyGamesTable tbody").fadeTo('slow',0.15);
  365. $("#OpenGamesTable tbody").fadeTo('slow',0.15);
  366. $("#PromotedGamesTable tbody").fadeTo('slow',0.15);
  367. var page = $('<div />').load('https://www.warlight.net/MultiPlayer/ ', function() {
  368. var myGames = page.find('#MyGamesTable tbody tr');
  369. var openGames = page.find('#OpenGamesTable tbody tr');
  370. var promotedGames = page.find('#PromotedGamesTable tbody tr');
  371. $.each($("#PromotedGamesTable tbody tr"), function( key, value ) {
  372. if($(value).html().indexOf("PastGames") < 0) {
  373. $(value).remove();
  374. }
  375. });
  376. $("#OpenGamesTable tbody tr").remove();
  377. $("#PromotedGamesTable tbody tr").remove();
  378. $.each($("#MyGamesTable tbody tr"), function( key, value ) {
  379. if($(value).html().indexOf("PastGames") < 0) {
  380. $(value).remove();
  381. }
  382. });
  383. $("#OpenGamesTable").scrollTop(0);
  384. $("#MyGamesTable").scrollTop(0)
  385. $("#PromotedGamesTable").scrollTop(0)
  386. $("#MyGamesTable tbody").prepend(myGames);
  387. $("#OpenGamesTable tbody").prepend(openGames);
  388. $("#PromotedGamesTable tbody").prepend(promotedGames) ;
  389. $("#ShowMorePromotedGamesLinkContainer").remove();
  390. showAllGames.trigger("click");
  391. showAllCoinGames.trigger("click");
  392. $("#MyGamesTable tbody").fadeTo('slow',1);
  393. $("#OpenGamesTable tbody").fadeTo('slow',1);
  394. $("#PromotedGamesTable tbody").fadeTo('slow',1);
  395. if(scrollGames) {
  396. refreshSingleColumnSize()
  397. }
  398. });
  399. }
  400.  
  401. jQuery.fn.outerHTML = function(s) {
  402. return s
  403. ? this.before(s).remove()
  404. : jQuery("<p>").append(this.eq(0).clone()).html();
  405. };
  406.  
  407.  
  408. function stickyTitles(stickies) {
  409. var thisObj = this;
  410.  
  411. thisObj.load = function() {
  412.  
  413. stickies.each(function(){
  414. var thisSticky = $(this).wrap('<div class="followWrap" />');
  415. thisSticky.parent().height(thisSticky.outerHeight());
  416. var pos = parseInt(thisSticky.offset().top) - parseInt($(".showSide").offset().top);
  417. $.data(thisSticky[0], 'pos', pos);
  418. });
  419. $(".showSide").off("scroll.stickies").on("scroll.stickies", function() {
  420. thisObj.scroll();
  421. });
  422. }
  423. thisObj.scroll = function() {
  424. stickies.each(function(i){
  425. var thisSticky = $(this),
  426. nextSticky = stickies.eq(i+1),
  427. prevSticky = stickies.eq(i-1),
  428. pos = $.data(thisSticky[0], 'pos');
  429. if (pos <= $(".showSide").scrollTop()) {
  430. thisSticky.addClass("fixed");
  431. if (nextSticky.length > 0 && thisSticky.offset().top >= $.data(nextSticky[0], 'pos') - thisSticky.outerHeight()) {
  432. thisSticky.addClass("absolute").css("top", jQuery.data(nextSticky[0], 'pos') - thisSticky.outerHeight());
  433. }
  434. } else {
  435. thisSticky.removeClass("fixed");
  436. if (prevSticky.length > 0 && $(".showSide").scrollTop() <= $.data(thisSticky[0], 'pos') - prevSticky.outerHeight()) {
  437. prevSticky.removeClass("absolute").removeAttr("style");
  438. }
  439. }
  440. });
  441. }
  442. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址