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

https://github.com/karolsw3/gradientify

Create beautiful, animated gradients with ease. This JS library provides you with an easy-to-use API to create and put animated gradients wherever you want on your website.
https://github.com/karolsw3/gradientify

animated animated-backgrounds animated-gradients gradient gradients javascript-library

Last synced: 6 months ago
JSON representation

Create beautiful, animated gradients with ease. This JS library provides you with an easy-to-use API to create and put animated gradients wherever you want on your website.

Awesome Lists containing this project

README

          

Create beautiful, animated gradients with ease.

Ever wanted to animate a gradient background, but CSS transitions disappointed you with their lack of this in-extremely-high-demand functionality? Worry no more!


DEMO

## Installation

For wizards:
```
npm i gradientify
```

For less-experienced wizards:
```html

```

## Usage

```javascript
let gradientify = new Gradientify(
'.yourClass',
[
"linear-gradient(60deg, rgb(255, 0, 0), rgb(0, 0, 255))", // Array of CSS gradients
"linear-gradient(10deg, rgb(25, 123, 23), #ff22af)",
"radial-gradient(rgb(25, 123, 223), red)"
],
3000 // Fading interval in miliseconds
)
```