Commit 344b352d by doszhang

dos

parent 02946ed1
...@@ -175,12 +175,12 @@ function ruleScroll() { ...@@ -175,12 +175,12 @@ function ruleScroll() {
let scrollTop = $('.rule-block').scrollTop(); let scrollTop = $('.rule-block').scrollTop();
// let top = (7.9 * fontSize) + scrollTop * step; let top = (7.9 * fontSize) + scrollTop * step;
// if (top < (7.9 * fontSize)) { if (scrollTop < 0) {
// top = 7.9 * fontSize; scrollTop = 0;
// } else if (top > (46.9 * fontSize)) { } else if (scrollTop > (scrollHeight * fontSize)) {
// top = 46 * fontSize; scrollTop = scrollHeight * fontSize;
// } }
$('.scroll-bar').css('top', top + 'px'); $('.scroll-bar').css('top', top + 'px');
}, 5); }, 5);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment