@bedard/gradient
v0.1.3
Published
A customizable version of the background animation used by Stripe.com
Downloads
234
Readme
@bedard/gradient
A customizable version of the background animation used by Stripe.com
Basic usage
Install the script using the CDN
<script src="https://unpkg.com/@bedard/gradient"></script>
Or via NPM
npm install @bedard/gradient
Then instantiate an instance with reference to a canvas
const canvas = document.querySelector('canvas')
new Gradient(canvas, {
colors: ['#ffffff', '#f87171', '#f9a8d4', '#fef08a'],
seed: Math.random(),
})
The animation can be started / stopped using the play
and pause
methods.