YuriyLisovskiy / ambient-cbg

Webpage backgrounds created using the HTML5 Canvas API and jwagner's Simplex Noise library in React.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Ambient Canvas Backgrounds

Animated canvas backgrounds in React.js

This module is React adaptation of crnacura/AmbientCanvasBackgrounds project with additional code refactoring and improvements.

Check the example web application.

Installation

$ npm install ambient-cbg

Usage

Example:

// App.js
import React, {Component} from 'react';
import './App.css';

import {Coalesce} from 'ambient-cbg'

class App extends Component {
    render() {
        return (
            <div className="App">
                <Coalesce/>
                <h1>Hello, World!</h1>
            </div>
        );
    }
}

export default App;

License

This project is licensed under the conditions of the MIT software license, see LICENSE file for more details.

About

Webpage backgrounds created using the HTML5 Canvas API and jwagner's Simplex Noise library in React.js

License:MIT License


Languages

Language:JavaScript 100.0%