Last active
December 29, 2015 18:02
-
-
Save elykahn/dd5aaf47ab4e5aed0a34 to your computer and use it in GitHub Desktop.
Revisions
-
ely kahn renamed this gist
Dec 29, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ely kahn created this gist
Dec 29, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ MKbvEX ------ Forked from [AnneD Osuch](http://codepen.io/devcodetips/)'s Pen [LGRJEo](http://codepen.io/devcodetips/pen/LGRJEo/). A [Pen](http://codepen.io/elykahn/pen/MKbvEX) by [ely kahn](http://codepen.io/elykahn) on [CodePen](http://codepen.io/). [License](http://codepen.io/elykahn/pen/MKbvEX/license). This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ #particle-canvas h2 teeesy This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ // particle.min.js hosted on GitHub (https://github.com/JulianLaval/canvas-particle-network) var canvasDiv = document.getElementById('particle-canvas'); var options = { particleColor: '#ddddff', interactive: true, speed: 'fast', density: 'high' }; var particleCanvas = new ParticleNetwork(canvasDiv, options); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ <script src="https://rawgit.com/JulianLaval/canvas-particle-network/master/particle-network.min.js"></script> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ html, body { height: 100%; width: 100%; margin: 0; padding: 0; overflow: hidden; } #particle-canvas { width: 100%; height: 100vh; }