Particle Orb CSS

PHOTO EMBED

Mon Nov 04 2024 21:06:53 GMT+0000 (Coordinated Universal Time)

Saved by @maiden #scss

// HTML: make a parent div with a class of "wrap" and inside of it make 300 children div's with the class of "c"; best in chrome;

$total: 00; // total particles
3
$orb-size: 0px;

$particle-size: 2px;

$time: s; 

$base-hue: 0; // change for diff colors (10 is nice)

​
8
html, body {

  height: 100%;
10
}

​

body {

  background: black;
14
  overflow: hidden; // no scrollbars.. 

}

​

.wrap {

  position: relative;

  top: 50%;

  left: 50%;

  width: 0; 

  height: 0; 

  transform-style: preserve-3d;

  perspective: 1000px;
content_copyCOPY

https://codepen.io/natewiley/pen/GgONKy