-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
49 lines (40 loc) · 1.15 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'use strict'
const requestAnimationFrame = require('raf')
const getMaxY = require('get-scrollmax-y')
const window = require('global/window')
const document = require('global/document')
const animate = (animations) => {
for (let i = 0; i < animations.length; i++) {
const a = animations[i]
if ('number' !== typeof a.from) a.from = 0
if ('number' !== typeof a.to) a.to = 1
if ('function' !== typeof a.fn) {
throw new Error(`animation ${i} has no function`)
}
}
let lastY = NaN
let calls = 0
const update = () => {
let y = window.pageYOffset
if (y === undefined) {
y = (document.documentElement || document.body.parentNode || document.body).scrollTop
}
if (y !== lastY) {
lastY = y
const maxY = getMaxY()
const p = maxY > 0 ? y / maxY : 0
for (let a of animations) {
if (p < a.from) a.fn(0, y, maxY)
else if (p > a.to) a.fn(1, y, maxY)
else a.fn((p - a.from) / (a.to - a.from), y, maxY)
}
}
if (++calls < 100) requestAnimationFrame(update)
}
window.addEventListener('scroll', () => {
if (calls >= 100) requestAnimationFrame(update)
calls = 0
})
requestAnimationFrame(update)
}
module.exports = animate