项目作者: lindelof

项目描述 :
React particles animation background component
高级语言: JavaScript
项目地址: git://github.com/lindelof/particles-bg.git
创建时间: 2019-11-22T06:27:42Z
项目社区:https://github.com/lindelof/particles-bg

开源协议:

下载


particles-bg

NPM npm JavaScript Style Guide

React component for particles backgrounds

This project refers to the source code of the Proton official website, I packaged it into a component. You can use it casually in your own projects. Thanks to the great author.

A vue.js version of particles-bg-vue is here https://github.com/lindelof/particles-bg-vue

Online demo

Install

  1. npm install --save particles-bg

Usage

  1. import React, { Component } from 'react'
  2. import ParticlesBg from 'particles-bg'
  3. class Example extends Component {
  4. render () {
  5. return (
  6. <>
  7. <div>...</div>
  8. <ParticlesBg type="circle" bg={true} ></ParticlesBg>
  9. </>
  10. )
  11. }
  12. }

Parameter Description

  1. <ParticlesBg color="#ff0000" num={200} type="circle" bg={true} ></ParticlesBg>

* type - Is the type of particle animation

Is the type of particle animation, random is a random selection. You are also free to customize use custom.

  1. "color"
  2. "ball"
  3. "lines"
  4. "thick"
  5. "circle"
  6. "cobweb"
  7. "polygon"
  8. "square"
  9. "tadpole"
  10. "fountain"
  11. "random"
  12. "custom"

* num - The number of particles emitted each time, generally not set

* color - The background color or particle color of the particle scene

Notice: which should be an array under type=color

* bg - Set to html background

If set the bg value to true

  1. bg={true} />
  1. position: "absolute",
  2. zIndex: -1,
  3. top: 0,
  4. left: 0
If set the bg value to object
  1. bg={{
  2. position: "absolute",
  3. zIndex: 999,
  4. width: 200
  5. }} />

Of course, you can also set class particles-bg-canvas-self to modify the style.

  1. .particles-bg-canvas-self{
  2. background: #000;
  3. ...
  4. }

About Custom

You can use type=”custom” to achieve a higher degree of freedom for the particle background.

  1. let config = {
  2. num: [4, 7],
  3. rps: 0.1,
  4. radius: [5, 40],
  5. life: [1.5, 3],
  6. v: [2, 3],
  7. tha: [-40, 40],
  8. // body: "./img/icon.png", // Whether to render pictures
  9. // rotate: [0, 20],
  10. alpha: [0.6, 0],
  11. scale: [1, 0.1],
  12. position: "center", // all or center or {x:1,y:1,width:100,height:100}
  13. color: ["random", "#ff0000"],
  14. cross: "dead", // cross or bround
  15. random: 15, // or null,
  16. g: 5, // gravity
  17. // f: [2, -1], // force
  18. onParticleUpdate: (ctx, particle) => {
  19. ctx.beginPath();
  20. ctx.rect(particle.p.x, particle.p.y, particle.radius * 2, particle.radius * 2);
  21. ctx.fillStyle = particle.color;
  22. ctx.fill();
  23. ctx.closePath();
  24. }
  25. };
  26. return (
  27. <div>
  28. <SignIn ></SignIn>
  29. <ParticlesBg type="custom" config={config} bg={true} ></ParticlesBg>
  30. </div>
  31. )

Similar projects

Maybe you will like these two projects, they will also make your page flourish

License

https://opensource.org/licenses/MIT