-4

If somebody has stumbled upon something like this (I'm particularly interested in "chaotic" circles on the background that react on cursor) please respond. I'd very much like to know what JavaScript frameworks, that are able to implement something like this, you would recommend.

Btw is it even possible to create this without third-party code ?

Kepler
  • 705
  • 1
  • 5
  • 19
  • http://threejs.org will help you do that. – NLV Mar 19 '15 at 19:56
  • Yes, this is fairly easily produced without 3rd party libraries. See the indicated duplicate answer showing how to "repel" particles away from the mouse and "attract" those particles back to their starting location when they stop being repelled by the mouse – markE Mar 20 '15 at 18:01

1 Answers1

0

Look at your dev console to see what libraries they're using. For instance, you'll see that they're using Zepto and Modernizr.

Btw is it even possible to create this without third-party code ?

Of course. 3rd party code doesn't do anything differently than your own code could- other than save you time and effort.

bvaughn
  • 13,300
  • 45
  • 46