-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurve.schema.json
52 lines (51 loc) · 1.14 KB
/
curve.schema.json
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
50
51
{
"$id": "https://schema.legytma.com.br/3.0.0/schema/curve.schema.json",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Curve",
"description": "",
"$comment": "Created by Windol <[email protected]> at 28/04/2020.\nCopyright (c) 2020 Legytma Soluções Inteligentes (https://legytma.com.br). All rights reserved.",
"type": "string",
"enum": [
"bounceIn",
"bounceInOut",
"bounceOut",
"decelerate",
"ease",
"easeIn",
"easeInBack",
"easeInCirc",
"easeInCubic",
"easeInExpo",
"easeInOut",
"easeInOutBack",
"easeInOutCirc",
"easeInOutCubic",
"easeInOutExpo",
"easeInOutQuad",
"easeInOutQuart",
"easeInOutQuint",
"easeInOutSine",
"easeInQuad",
"easeInQuart",
"easeInQuint",
"easeInSine",
"easeInToLinear",
"easeOut",
"easeOutBack",
"easeOutCirc",
"easeOutCubic",
"easeOutExpo",
"easeOutQuad",
"easeOutQuart",
"easeOutQuint",
"easeOutSine",
"elasticIn",
"elasticInOut",
"elasticOut",
"fastLinearToSlowEaseIn",
"fastOutSlowIn",
"linear",
"linearToEaseOut",
"slowMiddle"
]
}