[JavaScript] 纯文本查看 复制代码 // ==UserScript==
// [url=home.php?mod=space&uid=170990]@name[/url] 滚动到页面顶部和底部
// [url=home.php?mod=space&uid=467642]@namespace[/url] your-namespace
// [url=home.php?mod=space&uid=1248337]@version[/url] 1.0
// @description 使用Ctrl+上箭头滚动到页面顶部,使用Ctrl+下箭头滚动到页面底部
// [url=home.php?mod=space&uid=195849]@match[/url] *://*/*
// [url=home.php?mod=space&uid=609072]@grant[/url] none
// ==/UserScript==
(function() {
'use strict';
// 监听键盘事件
document.addEventListener('keydown', function(event) {
if (event.ctrlKey) {
if (event.keyCode === 38) { // 上箭头键
scrollToTop();
} else if (event.keyCode === 40) { // 下箭头键
scrollToBottom();
}
}
});
// 滚动到页面顶部
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
// 滚动到页面底部
function scrollToBottom() {
window.scrollTo({
top: document.documentElement.scrollHeight,
behavior: 'smooth'
});
}
})();
|