UNPKG
@synapsestudios/react-scroll
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.4.2
0.4.0
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0
A scroll component for React.js
github.com/synapsestudios/react-scroll
synapsestudios/react-scroll
@synapsestudios/react-scroll
/
modules
/
mixins
/
smooth.js
13 lines
(12 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
module
.
exports
= {
/* * https://github.com/oblador/angular-scroll (duScrollDefaultEasing) */
defaultEasing :
function
(
x
) {
'use strict'
;
if
(x <
0.5
) {
return
Math
.
pow
(x*
2
,
2
)/
2
; }
return
1
-
Math
.
pow
((
1
-x)*
2
,
2
)/
2
; } }