UNPKG
webslides
Version:
latest (1.5.0)
1.5.0
1.4.2
1.4.1
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.1
1.2.0
1.1.0
1.0.0
Making HTML presentations easy
github.com/webslides/webslides
webslides/webslides
webslides
/
src
/
js
/
utils
/
easing.js
11 lines
(9 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Swing easing function. *
@param
{
number
} p The percentage of time that has passed. *
@return
{
number
} */
function
swing
(
p
) {
return
0.5
-
Math
.
cos
(p *
Math
.
PI
) /
2
; }
export
default
{swing};