瀏覽代碼

Speed up smooth scrolling a bit

Thibaut Courouble 9 年之前
父節點
當前提交
29829ac1ce
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      assets/javascripts/lib/util.coffee

+ 2 - 2
assets/javascripts/lib/util.coffee

@@ -234,13 +234,13 @@ $.smoothScroll = (el, end) ->
 
   if smoothScroll
     newDistance = smoothEnd - smoothStart
-    smoothDuration += Math.min 400, Math.abs(smoothDistance - newDistance)
+    smoothDuration += Math.min 300, Math.abs(smoothDistance - newDistance)
     smoothDistance = newDistance
     return
 
   smoothStart = el.scrollTop
   smoothDistance = smoothEnd - smoothStart
-  smoothDuration = Math.min 400, Math.abs(smoothDistance)
+  smoothDuration = Math.min 300, Math.abs(smoothDistance)
   startTime = Date.now()
 
   smoothScroll = ->