模板:首页/头图:修订间差异
来自Gal中文百科
更多操作
Yexiaoyu将页面模板:首页/头图的内容模型从“wikitext”更改为“JavaScript” |
(没有差异)
|
2023年11月17日 (五) 08:13的最新版本
<script>
$(function(){
/* 头图 */
var page = document.querySelector("body");
if (page.classList.contains('page-首页')) {
var mwBody = document.getElementById('content');
var newDiv = document.createElement('div');
newDiv.setAttribute('class', 'header-image');
newDiv.innerHTML = '<div class="header-image" style="background-image: linear-gradient(to top, var(--color-surface-0), transparent 50%), url(https://image.knebulae.com/data/6MI.png);background-size: cover;background-position: top;height: 36vh;margin-bottom: -37vh;"></div>';
mwBody.parentNode.insertBefore(newDiv, mwBody);
}
}());
</script>