https://github.com/fabiosantoscode/worklet
Simpler API for the Worklet W3C API
https://github.com/fabiosantoscode/worklet
Last synced: 3 months ago
JSON representation
Simpler API for the Worklet W3C API
- Host: GitHub
- URL: https://github.com/fabiosantoscode/worklet
- Owner: fabiosantoscode
- Created: 2018-04-11T15:41:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-07T14:14:38.000Z (over 7 years ago)
- Last Synced: 2025-03-16T06:32:59.177Z (11 months ago)
- Language: JavaScript
- Size: 42 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Worklet
Use the CSS "houdini" API today with this easy wrapper!
## Example
```javascript
const worklet = require('worklet')
const element = document.getElementById('target')
worklet.registerPaint(element, (ctx, dimensions) => {
ctx.fillRect(0, 0, 10, 10)
})
```