You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
528 B
9 lines
528 B
setTimeout(() => {
|
|
let footer = document.createElement('div')
|
|
footer.innerHTML = `<div class="footer"> <span class="beianhao on-pointer"> @Soul | <a href="http://beian.miit.gov.cn"> 粤ICP备2020098994号 </a></span></div>`
|
|
footer.classList.add("off-select")
|
|
document.querySelector('body').appendChild(footer)
|
|
let footer_style = document.createElement('link')
|
|
footer_style.innerHTML = `<link rel="stylesheet" href="http://soul2.cn/example/style/footer.css">`
|
|
document.querySelector('head').appendChild(footer_style)
|
|
}, 0) |