animatable-properties
v3.0.17
Published
Animatable CSS properties for use with Web Animations API, JavaScript and CSS
Downloads
174
Maintainers
Readme
Animatable CSS properties
DEMO and its source code.
List of animatable CSS properties and their syntax with possibility of validation and sanitization for use with Web Animations API, JavaScript and CSS.
It is based on the MDN animatable CSS properties list minus vendor-prefixed properties. The properties and their syntax are fetched from mdn-data. Validation and sanitation are based on css-tree.
For use with Web Animations API "float" must be written as "cssFloat" and "offset" as "cssOffset". Reference
Functions included: cssToJs()
, jsToCss()
, isAnimatable()
, popular()
, syntax()
, validate()
, sanitize()
. Explanation below.
Install
$ yarn add animatable-properties
or
$ npm install animatable-properties
Usage
Import all functionality into one object:
import * as animatable from 'animatable-properties'
Or import only what you need:
import { properties, propertiesCSS, propertiesJS, cssToJs, jsToCss, isAnimatable, popular, syntax, validate, sanitize } from 'animatable-properties'
Or load from CDN:
<!-- Either -->
<script src="https://unpkg.com/animatable-properties"></script>
<!-- or -->
<script src="https://cdn.jsdelivr.net/npm/animatable-properties@latest/dist/animatable.js"></script>
Arrays containing all animatable properties in various formats:
animatable.properties
//=> Array ["all", "backdropFilter", "background", "backgroundColor", …]
// Web Animations API style => camelCase, "offset" becomes "cssOffset"
animatable.propertiesCSS
//=> Array ["all", "backdrop-filter", "background", "background-color", …]
// CSS style => kebab-case
animatable.propertiesJS
//=> Array ["all", "backdropFilter", "background", "backgroundColor", …]
// JavaScript style => camelCase, "offset" remains "offset"
cssToJs()
Use cssToJs
method to convert property names from any format to Web Animations API or Javascript format:
animatable.cssToJs('grid-column-gap')
//=> 'gridColumnGap'
animatable.cssToJs('float')
//=> ''
// returns empty string because 'float' is not an animatable property
animatable.cssToJs('offset')
//=> 'cssOffset'
animatable.cssToJs('offset', false)
//=> 'offset'
jsToCss()
Use jsToCss
method to convert property names from any format to CSS format:
animatable.jsToCss('gridColumnGap')
//=> 'grid-column-gap'
Or universaly convert string from any format to any using sanitize()
with second argument (which by default is 'waapi'
):
animatable.sanitize('grid-column-gap')
//=> 'gridColumnGap'
animatable.sanitize('offset')
//=> 'cssOffset'
animatable.sanitize('offset', 'js')
//=> 'offset'
animatable.sanitize('gridColumnGap', 'css')
//=> 'grid-column-gap'
isAnimatable()
Use isAnimatable
method to detect if a property is animatable.
The argument can be in any of the three formats and case insensitive.
animatable.isAnimatable('grid-column-gap')
//=> true
animatable.isAnimatable('gridCoLumnGap')
//=> true
animatable.isAnimatable('grId-coLumn-GAP')
//=> true
animatable.isAnimatable('grIdcoLumnGAP')
//=> true
animatable.isAnimatable('float')
//=> false
animatable.isAnimatable('cssFloat')
//=> false
animatable.isAnimatable('offset')
//=> true
animatable.isAnimatable('cssOffset')
//=> true
isAnimatable
has an optional argument:
animatable.isAnimatable(stringToCheck, (returnCssProperty = false))
If returnCssProperty
is true
then animatable.isAnimatable()
returns the CSS property instead of true
if it's valid and an empty string instead of false
if invalid:
animatable.isAnimatable('gridCoLumnGap', true)
//=> 'grid-column-gap'
animatable.isAnimatable('textdecorationTHICKNess', true)
//=> 'text-decoration-thickness'
animatable.isAnimatable('textdecorrationTHICKNess', true)
//=> ''
jsToCss()
is an alias of isAnimatable(stringToCheck, true)
.
popular()
With popular()
you can get array of animatable properties sorted by their usage popularity according to Chrome's anonymous usage statistics:
https://chromestatus.com/metrics/css/animated
animatable.popular((start = 0), (end = 10))
animatable.popular()
// Array(10) [ "opacity", "transform", "background-color", "color", "visibility", "width", "border-bottom-color", "border-top-color", "border-left-color", "border-right-color" ]
animatable.popular(10, 21)
// Array(11) [ "top", "height", "box-shadow", "left", "bottom", "font-size", "outline-color", "outline-width", "background-size", "border-bottom-width", "padding-top" ]
syntax()
Use syntax(string)
to get syntax for a specific property. It returns an object of the following structure:
Where:
main
is a string containing main syntax of the property.links
is an object with links to MDN documenting syntaxes not explained inkey => value
pairskey => value
pairs explaining main syntax.order
is an array defining order in whichkey => value
pairs are recommended to be listed.
View demo source for code examples of how to work with the syntax object.
For example:
Another example:
validate()
validate(objectToValidate, returnError = true)
Validates object of key => value
pairs, where key
is a CSS property in any of the 3 formats (WAAPI, JS or CSS) and value
is its value.
Returns true
or error
object which is default. Or true
or false
if the second argument returnError
is false
.
View demo source for code examples of how to handle the error object.
Example:
sanitize()
sanitize(objectArrayOrString, format = 'waapi')
It takes an object of key => value
pairs, an array of strings or a string and returns a sanitized object, array or string containing the input object with invalid elements removed.
See DEMO for exapmles.
Development
Build the bundle for browsers into ./dist
folder:
yarn build
Watch. Rebuild the bundle when its source files change on disk:
yarn watch
Run tests:
yarn test
Lint:
yarn lint
Fix linting and style errors:
yarn fix
Update dependencies:
yarn up
Generate changelog based on commit messages:
yarn c
To use the above command conventional-changelog-cli must be installed globally. Follow the recommended workflow.