Khác biệt giữa bản sửa đổi của “MediaWiki:Common.js”
(Đã thay thế cả nội dung bằng “mw.loader.load('/wiki_libs/css/vin_styles.css', 'text/css'); mw.loader.load('/wiki_libs/js/wiki_libs.js', 'text/javascript');”) Thẻ: Thay thế nội dung |
Không có tóm lược sửa đổi |
||
Dòng 1: | Dòng 1: | ||
mw.loader.load('/wiki_libs/css/vin_styles.css', 'text/css'); | mw.loader.load('/wiki_libs/css/vin_styles.css', 'text/css'); | ||
mw.loader.load('/wiki_libs/js/wiki_libs.js', 'text/javascript'); | mw.loader.load('/wiki_libs/js/wiki_libs.js', 'text/javascript'); | ||
//Get the button: | |||
mybutton = document.getElementById("myBtn"); | |||
// When the user scrolls down 20px from the top of the document, show the button | |||
window.onscroll = function() {scrollFunction()}; | |||
function scrollFunction() { | |||
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { | |||
mybutton.style.display = "block"; | |||
} else { | |||
mybutton.style.display = "none"; | |||
} | |||
} | |||
// When the user clicks on the button, scroll to the top of the document | |||
function topFunction() { | |||
document.body.scrollTop = 0; // For Safari | |||
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera | |||
} |
Phiên bản lúc 09:10, ngày 14 tháng 5 năm 2020
mw.loader.load('/wiki_libs/css/vin_styles.css', 'text/css'); mw.loader.load('/wiki_libs/js/wiki_libs.js', 'text/javascript'); //Get the button: mybutton = document.getElementById("myBtn"); // When the user scrolls down 20px from the top of the document, show the button window.onscroll = function() {scrollFunction()}; function scrollFunction() { if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { mybutton.style.display = "block"; } else { mybutton.style.display = "none"; } } // When the user clicks on the button, scroll to the top of the document function topFunction() { document.body.scrollTop = 0; // For Safari document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera }