MediaWiki:Common.js:修订间差异
来自Ymirheim Wiki
无编辑摘要 |
小无编辑摘要 |
||
(未显示同一用户的2个中间版本) | |||
第1行: | 第1行: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
(function(){ | (function(){ | ||
var doc = document.getElementById('mw-content- | var doc = document.getElementById('mw-content-wrapper'); | ||
if (doc) { | if (doc) { | ||
doc.style = 'padding-top: 48px;'; | |||
var a = document.createElement('a'); | var a = document.createElement('a'); | ||
a.href="https://supportukrainenow.org/"; | a.href="https://supportukrainenow.org/"; | ||
a.target="_blank"; | a.target="_blank"; | ||
a.rel = "noindex nofollow"; | a.rel = "noindex nofollow"; | ||
a.style = 'display: block; margin: 20px 0;'; | |||
var img = document.createElement('img'); | var img = document.createElement('img'); | ||
img.src = "https:// | img.src = "https://ymirheim.org/files/images/19ee4f9fe1e6a0c3286d40c55f5c80465fadad01.png"; | ||
img.style = 'width: 100%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);'; | img.style = 'width: 100%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);'; | ||
img.alt = ""; | img.alt = ""; |
2022年5月25日 (三) 15:09的最新版本
/* Any JavaScript here will be loaded for all users on every page load. */ (function(){ var doc = document.getElementById('mw-content-wrapper'); if (doc) { doc.style = 'padding-top: 48px;'; var a = document.createElement('a'); a.href="https://supportukrainenow.org/"; a.target="_blank"; a.rel = "noindex nofollow"; a.style = 'display: block; margin: 20px 0;'; var img = document.createElement('img'); img.src = "https://ymirheim.org/files/images/19ee4f9fe1e6a0c3286d40c55f5c80465fadad01.png"; img.style = 'width: 100%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);'; img.alt = ""; a.append(img); doc.insertBefore(a, doc.firstChild); } })();