Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <canvas id='canv'></canvas>
              
            
!

CSS

              
                body {
  background: hsla(0, 0%, 5%, 1);
  overflow: hidden;
  margin: 0;
  cursor:move;
}
              
            
!

JS

              
                window.requestAnimFrame = (function() {
  return window.requestAnimationFrame ||
    window.webkitRequestAnimationFrame ||
    window.mozRequestAnimationFrame ||
    window.oRequestAnimationFrame ||
    window.msRequestAnimationFrame ||
    function(loop) {
      window.setTimeout(callback, 1000 / 60);
    };
})();

/******************
var function key
----------------
num: #dots
sd: rect width / height 
   [ smaller #, larger size ]
sp: spacing between dots
min_d: minimum distance 
       between scaled dots
ŭ: color update var
c: canvas
$: context
dots: dots array
_pt: points
w, h: canvas width / height
msX, msY: mouse X, mouse Y
Pt: this x,y point function
create: make scene
_p: dot in dots
dx, dy: x,y distance
dist: distance calc
sc: scale
col: color
run: animation loop
go: initiate
*********************/

var num = 1500;
var sd = 100;
var sp = 50;
var min_d = 100;
var ŭ = 0;

var c;
var $;
var dots;
var _pt;

c = document.getElementById('canv');
$ = c.getContext('2d');
var w = c.width = window.innerWidth;
var h = c.height = window.innerHeight;

var msX = w * 0.5;
var msY = h * 0.5;

var Pt = function(x, y) {
  this.x = 0;
  this.y = 0;
}

var create = function() {
  dots = [];
  for (var i = 0; i < num; i++) {
    ŭ -= .5;
    var _p = {
      x: (i % sd) * sp + 30,
      y: Math.floor(i / sd) * sp + 100,
      col: 'hsla(' + (ŭ * i / num + 155) + ',100%,70%, .6)',
      sc: 1.0
    };
    dots.push(_p);
  }
}

var upd = function() {

  _pt.x += (msX - _pt.x) * 0.03;
  _pt.y += (msY - _pt.y) * 0.03;

  $.clearRect(0, 0, c.width, c.height);

  for (var i = 0; i < num; i++) {

    var _p = dots[i];

    var dx = _pt.x - _p.x;
    var dy = _pt.y - _p.y;
    var dist = Math.sqrt(dx * dx + dy * dy);

    if (dist < min_d) {
      _p.sc = (min_d - dist) / 10 + 1.0;
    } else {
      _p.sc = 1.0;
    }

    $.fillStyle = _p.col;
    $.beginPath();
    $.arc(_p.x, _p.y, 5 * _p.sc, 0, Math.PI * 2, false);
    $.fill();
  }
}

var run = function() {
  window.requestAnimFrame(run);
  upd();
}

var go = function() {
  create();
  _pt = new Pt(0, 0);
  run();
}

document.addEventListener('mousemove', function(e) {
  var rect = e.target.getBoundingClientRect();
  msX = e.clientX - rect.left;
  msY = e.clientY - rect.top;
}, false);

document.addEventListener('touchmove', function(e) {
  var rect = e.target.getBoundingClientRect();
  msX = e.touches[0].pageX - rect.left;
  msY = e.touches[0].pageY - rect.top;
}, false);

window.addEventListener('resize', function() {
  c.width = w = window.innerWidth;
  c.height = h = window.innerHeight;
}, false);

go();
              
            
!
999px

Console