Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thelevicole/stripe-gradient

A reverse engineered, and simplified javascript library to replicate the animated Stripe gradients.
https://github.com/thelevicole/stripe-gradient

animation canvas gradient stripe

Last synced: about 2 months ago
JSON representation

A reverse engineered, and simplified javascript library to replicate the animated Stripe gradients.

Awesome Lists containing this project

README

        

# Stripe Gradient

A reverse engineered, and simplified javascript library to replicate the animated [Stripe](https://stripe.com/) gradients.

## Basic usage

**HTML**

```html

```

**JavasScript**
```javascript
new Gradient({
canvas: '#my-canvas-id',
colors: ['#a960ee', '#ff333d', '#90e0ff', '#ffcb57']
});
```

## jQuery ready

```javascript
$('#my-canvas-id').gradient({
colors: ['#a960ee', '#ff333d', '#90e0ff', '#ffcb57']
});
```