[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'
});
}
})();
油猴地址:https://greasyfork.org/zh-CN/scripts/472628-%E6%BB%9A%E5%8A%A8%E5%88%B0%E9%A1%B5%E9%9D%A2%E9%A1%B6%E9%83%A8%E5%92%8C%E5%BA%95%E9%83%A8 |