This page is a translated version of the page Manual:$wgLogoHD and the translation is 83% complete.
服务器URL及文件路徑: $wgLogoHD
高清版本网站Logo的URL。
引进版本:1.25.0 (Gerrit change 195195; git #b5f2cf2d)
弃用版本:1.35.0 (Gerrit change 562588; git #8cd2e133)
移除版本:1.42.0 (Gerrit change 992794; git #167fbd0a)
允许的值:(array of factors and relative paths or urls)
默认值:false

细节

Array with factors and their associated relative paths or URL paths to HD versions of the wiki logo. 缩放的logo大小应该小于135x135像素,与$wgLogo 的大小相同。

只支持1.5倍和2倍的版本。 这就意味着两倍版本的logo最大为270x270像素的正方形。

例如:

$wgLogoHD = [
	"1.5x" => "path/to/1.5x_version.png",
	"2x" => "path/to/2x_version.png"
];

较旧的MediaWiki版本

如果您使用1.25版本之间的MediaWiki,您可以将下面这段内容添加到MediaWiki:Common.css中:

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
	#p-logo a {
		background-image: url(//path/to/1.5x_version.png);
	}
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (min-resolution: 2dppx), (min-resolution: 192dpi) {
	#p-logo a {
		background-image: url(//path/to/2x_version.png);
	}
}

另请参阅