ladybird/Userland/Libraries/LibWeb/CSS/EasingFunctions.json
Ali Mohammad Pur dd073b2711 Meta/CodeGenerators+LibWeb: Implement parsing CSS easing functions
This only implements the parser bits, no functionality is implemented,
and no properties are parsed because of this.
2023-07-13 05:10:41 +02:00

24 lines
351 B
JSON

{
"linear": {},
"ease": {},
"ease-in": {},
"ease-out": {},
"ease-in-out": {},
"cubic-bezier": {
"parameters": [
"<number [0, 1]>",
"<number>",
"<number [0, 1]>",
"<number>"
]
},
"step-start": {},
"step-end": {},
"steps": {
"parameters": [
"<integer>",
"<step-position>?"
]
}
}