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

              
                
<div class="ball">
  <div class="halo"></div>
  <div class="halo"></div>
  <div class="halo"></div>
</div>




              
            
!

CSS

              
                :root {
  --mouse-x;
  --mouse-y;
  --scale;
  --radius: 40px;
  --factor: 1;
}

.ball {
  width: var(--radius);
  height: var(--radius);
  background: #D92659;
  border-radius: 50%;
  position:absolute;
/* use calc() and the CSS variables created above to center the ball around the mouse position.  */
  transform: translate(calc(var(--mouse-x) * 1px - var(--radius)/2),calc(var(--mouse-y) * 1px - var(--radius)/2));
}

.halo {
  width: var(--radius);
  height: var(--radius);
  background: rgb(114, 61, 83);
  border-radius: 50%;
  position:absolute;
  opacity: .15;
/*   filter: blur(var(--factor)); */
  transform: scale(calc(var(--scale) * var(--factor)));
 
}

.halo:nth-of-type(1) {
  --factor: .3;
}

.halo:nth-of-type(2) {
  --factor: 0.5;
}

.halo:nth-of-type(3) {
  --factor: .9;
}

body {
  background: #070611;
  font-family: Verdana, sans-serif;
}

p {
  color: whitesmoke;
  width: 400px;
  top: 10px;
  left: 10px;
  position:absolute;
}

              
            
!

JS

              
                var [xpos,targetX,ypos,targetY, velX, velY] = [0,0,0,0,0,0];

const docStyle = document.documentElement.style;
const drag = 0.8;
const strength = 0.12;

function springItOn() {

  var diffX = targetX - xpos; 
  diffX *= strength;
  velX *=drag;
  velX += diffX;
	xpos += velX;
  
  var diffY = targetY - ypos; 
  diffY *= strength;
  velY *=drag;
  velY += diffY;
	ypos += velY;
  
  //apply the newly calculated positions via CSS custom properties each frame. SO FANCY
  docStyle.setProperty('--mouse-x', xpos);
  docStyle.setProperty('--mouse-y', ypos);
  
  //set the halo scale property baesd on some arbitrary math for kicks
  docStyle.setProperty('--scale', (velY + velX)*strength);

  requestAnimationFrame(springItOn);
}

springItOn();

//update the target position based on where the mouse is
 document.addEventListener('mousemove', (e) => {
  targetX = e.clientX;
  targetY = e.clientY;
});
              
            
!
999px

Console