Compare commits

...

23 Commits

Author SHA1 Message Date
Vincent Garreau
d01286d6dc Update README.md 2017-03-25 18:46:21 +01:00
Vincent Garreau
e73faacfa4 Merge pull request #79 from christophersu/fix-readme
Remove duplicate table row from readme
2015-12-09 11:59:57 +01:00
Christopher Su
01ff4a6ef0 Update README.md 2015-11-27 17:23:59 -08:00
Vincent Garreau
22b4986065 Update README.md 2015-09-20 19:53:10 +02:00
Vincent Garreau
90b36f4b55 Update README.md - fix img 2015-09-20 17:40:08 +02:00
Vincent Garreau
20d58078ea Merge pull request #58 from kkirsche/patch-1
Remove moot `version` property from bower.json
2015-06-15 21:23:15 +02:00
Kevin Kirsche
7ed36a461d Remove moot version property from bower.json
Per bower/bower.json-spec@a325da3
2015-06-10 20:43:55 -04:00
Vincent Garreau
cee3b0a3da Merge branch 'dev' 2015-05-10 16:44:18 +02:00
Vincent Garreau
2b16d668ae Merge branch 'dev' 2015-05-10 16:42:52 +02:00
Vincent Garreau
c46ff7a398 Update README.md 2015-05-10 16:38:44 +02:00
Vincent Garreau
b56f5c1832 slash 2015-05-10 13:00:07 +02:00
Vincent Garreau
209117b34b update README 2015-05-10 12:54:47 +02:00
Vincent Garreau
8833f08c48 Merge branch 'dev' 2015-05-10 12:46:12 +02:00
Vincent Garreau
d6089aff46 update README 2015-05-10 12:39:27 +02:00
Vincent Garreau
858d554b2a Merge branch 'master' into dev 2015-05-10 12:36:55 +02:00
Vincent Garreau
acb4f2630d Update README.md 2015-05-09 14:56:47 +02:00
Vincent Garreau
5a03dcceb4 Update LICENSE.md 2015-05-09 14:47:49 +02:00
Vincent Garreau
11b1cb05da Update README.md 2015-05-09 14:11:57 +02:00
Vincent Garreau
229567ab53 Update README.md 2015-05-09 14:11:33 +02:00
Vincent Garreau
5e869d0e59 Update README.md 2015-05-09 14:08:59 +02:00
Vincent Garreau
14bf5ad13f Update README.md 2015-05-09 14:07:12 +02:00
Vincent Garreau
c8f5d04cca Update README.md 2015-05-09 14:06:37 +02:00
Vincent Garreau
1d6d392218 Update README.md 2015-05-09 14:02:09 +02:00
2 changed files with 19 additions and 6 deletions

View File

@ -5,10 +5,10 @@
------------------------------
### `Demo / Generator`
<a href="http://vincentgarreau.com/particles.js" target="_blank"><img src="https://dl.dropboxusercontent.com/u/19580440/particlesjs-assets/github-screen.jpg" alt="particles.js generator" /></a>
<a href="http://vincentgarreau.com/particles.js/" target="_blank"><img src="http://vincentgarreau.com/particles.js/assets/img/github-screen.jpg" alt="particles.js generator" /></a>
Configure, export, and share your particles.js configuration on CodePen: <br />
http://vincentgarreau.com/particles.js
http://vincentgarreau.com/particles.js/
CodePen demo: <br />
http://codepen.io/VincentGarreau/pen/pnlso
@ -128,7 +128,7 @@ particlesJS.load('particles-js', 'assets/particles.json', function() {
"distance": 800,
"size": 80,
"duration": 2,
"opacity": 8,
"opacity": 0.8,
"speed": 3
},
"repulse": {
@ -152,12 +152,11 @@ particlesJS.load('particles-js', 'assets/particles.json', function() {
### `Options`
key | option type / notes | example
----|---------|------|------
----|---------|------
`particles.number.value` | number | `40`
`particles.number.density.enable` | boolean | `true` / `false`
`particles.number.density.value_area` | number | `800`
`particles.color.value` | HEX (string) <br /> RGB (object) <br /> HSL (object) <br /> array selection (HEX) <br /> random (string) | `"#b61924"` <br /> `{r:182, g:25, b:36}` <br /> `{h:356, s:76, l:41}` <br /> `["#b61924", "#333333", "999999"]` <br /> `"random"`
`particles.number.density.value_area` | number | `800`
`particles.shape.type` | string <br /> array selection | `"circle"` <br /> `"edge"` <br /> `"triangle"` <br /> `"polygon"` <br /> `"star"` <br /> `"image"` <br /> `["circle", "triangle", "image"]`
`particles.shape.stroke.width` | number | `2`
`particles.shape.stroke.color` | HEX (string) | `"#222222"`
@ -214,6 +213,7 @@ key | option type / notes | example
### `Packages install`
##### ***npm***
https://www.npmjs.com/package/particles.js
```
npm install particles.js
```
@ -227,3 +227,17 @@ bower install particles.js --save
```
gem 'rails-assets-particles.js'
```
##### ***Meteor***
https://atmospherejs.com/newswim/particles
```
meteor add newswim:particles
```
-------------------------------
### `Hosting / CDN`
***Please use this host or your own to load particles.js on your projects***
http://www.jsdelivr.com/#!particles.js

View File

@ -1,7 +1,6 @@
{
"name": "particles.js",
"main": "particles.js",
"version": "2.0.0",
"homepage": "https://github.com/VincentGarreau/particles.js",
"authors": [
"Vincent Garreau <vin.garreau@gmail.com>"