Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

houdini-noise

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

houdini-noise

CSS Houdini PaintWorklet for background noise

latest
Source
npmnpm
Version
0.0.5
Version published
Weekly downloads
12
Maintainers
1
Weekly downloads
 
Created
Source

houdini-noise

houdini noise used on a button

A CSS Houdini Worklet to paint HSL powered background noise.

Getting started

1. Load the worklet

Using CDN is the easiest way to add the library:

if ('paintWorklet' in CSS) {
  CSS.paintWorklet.addModule('https://unpkg.com/houdini-noise/dist/worklet.js');
}

You can use the polyfill

To add support for all moder browsers, you can load the worklet with css-paint-polyfill fallback.

<script>
  ;(async function() {
    if (CSS['paintWorklet'] === undefined)
      await import('https://unpkg.com/css-paint-polyfill')

    CSS.paintWorklet.addModule('https://unpkg.com/houdini-noise/dist/worklet.js');
  })()
</script>

2. Ready to use it in your CSS!

To use Noise worklet you need define some custom properties with values and add the value paint(noise) on background property.

.element {
  --noise: 0; /* Entry point to animate noise */
  --noise-cell-size: 1;
  --noise-hue: 330;
  --noise-saturation: 100;
  --noise-lightness: 0 80;
  background: paint(noise);
}
PropertyDescriptionDefault
--noiseHack, use this property to animate noise. Animating the property triggers a repaint.0
--noise-cell-sizeCell Size, use this to define the size of noise particles in px0
--noise-hueHue Range, use this to define a set hue or a hue range0 0
--noise-saturationSaturation Range, use this to define a set saturation or a saturation range0 0
--noise-lightnessLightness Range, use this to define a set lightness or a lightness range0 0

Development

Run it locally!

npm i
make develop

License

MIT License

Copyright (c) 2020 jh3y

Keywords

CSS

FAQs

Package last updated on 14 Dec 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts