npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

custom-cursor.js

v1.3.9

Published

Generate a custom cursor in JS

Downloads

234

Readme

custom-cursor.js

Create a custom cursor in JavaScript

  • Demos Page
  • Another Example

About

  • Only enabled on mouse-driven devices
  • Add various interaction animation
  • API interface providing basic functions
  • Lightweight, dependency free

Import

const CustomCursor = require('custom-cursor.js').default

Simple Creation

// Following options represent the defaults
const options = {
   // Whether or not the true cursor should be hidden when the custom cursor is initialized
   hideTrueCursor: false,

   // Array of DOM elements/selector strings that add interactions on hover
   focusElements: ['a', 'button'],

   // Class applied when the true cursor is hovering over a focusElement
   focusClass: 'cursor--focused',
}

// Can be selector string or DOM node
const element = '.cursor'

const customCursor = new CustomCursor(element, options)

Advanced Interactions

Focus elements can be given unique interactions.

const options = {
   focusElements: [
      {
         elements: 'a#special-focus', // Can be nodelist or selector
         focusClass: 'cursor--special-focused',
         mouseenter: () => {
            // Run in addition to adding the focusClass
            console.log('Hi!! I entered <a id="#special-focus">')
         },
         mouseleave: () => {
            // Run in addition to removing the focusClass
            console.log(`Cya!! I'm leaving <a id="#special-focus">`)
         },
      },
      'button',
      'a',
   ],

   focusClass: 'cursor--focused',
}

const customCursor = new CustomCursor('.cursor', options)

If a focus class is given for a specific selector it will override the default. In the above example 'cursor--special-focused' is applied to <a id="special-focus"> on hover, and 'cursor--focused' is applied on hover to buttons and other links.

Note that listeners will only be attached to an element the first time it's found in the DOM when looping over the selectors. As such, the more specific an interaction, the earlier it should be specified in the array.

Core Methods

// Initializes the cursor to begin following the mouse by attaching listeners and starting an animation loop
customCursor.initialize()

// Disable cursor from following the mouse without removing any listeners
customCursor.disable()

// Enable cursor to follow mouse again if it has been disabled
customCursor.enable()

// Destroy the cursor removing all event listeners and stopping the animation loop
customCursor.destroy()

// Update the cursor with new options
customCursor.update(newOptions)

// Hide true cursor (if it isn't already)
customCursor.hideTrueCursor()

// Unhide true cursor (if it's hidden)
customCursor.unhideTrueCursor()

// x and y being a pixel position inside the viewport
customCursor.setPosition(x, y, (requestAnimationFrame = false))
/*
  Note that if the custom cursor is still enabled it's
  position will be updated on the next animationFrame.
  Thus, this method is most useful when the cursor is disabled.
*/

// Add new focus control elements after initialization
customCursor.focusController.addFocusElements(focusElements)
/*
   Where focusElements mimics the structure used in options when initializing the cursor
*/

// Remove elements currently applying focus controls to the cursor
customCursor.focusController.removeFocusElements(htmlElements)
/*
   htmlElements are a NodeList of DOM elements currently affecting the cursor 
*/

Core Markup

<div class="cursor"></div>
.cursor {
   pointer-events: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   top: 0;
   left: 0;
   position: fixed;
   z-index: 1000;

   &.cursor--initialized {
      // if cursor initialized
   }

   &.cursor--off-screen {
      // if true cursor is outside of the window
   }

   &.cursor--disabled {
      // if cursor has been disabled
   }
}

Use Case Examples

Run code if mobile

const customCursor = new CustomCursor('.cursor').initialize()

// True when client is mobile (cursor won't get initialized)
if (customCursor.isMobileUserAgent) {
   // foo()
}

Unhide hidden true cursor when disabling

const customCursor = new CustomCursor('.cursor', {
   hideTrueCursor: true,
}).initialize()

// When disabling
customCursor.disable().unhideTrueCursor()

// Then re-enable
customCursor.enable().hideTrueCursor()

Set starting point for the cursor

new CustomCursor('.cursor').setPosition(x, y).initialize()

Add new focus controllers

const cursor = new CustomCursor('.cursor').initialize()


// Some time passes...


cursor.focusController.addFocusElements({
   elements: '.my-new-elements'
   focusClass: 'cursor--special-focused',
})

Remove focus controllers

// Keep a DOM list of elements you will need to remove later
const toBeRemovedLater = document.querySelectorAll('.will-be-removed')

const cursor = new CustomCursor('.cursor', {
   focusElements: [
      {
         elements: willBeRemovedLater
         focusClass: 'cursor--special-focused',
      }
   ]}).initialize()


// Some time passes...


cursor.focusController.removeFocusElements(toBeRemovedLater)

Full Example

View Following Example's Live Demo

<div class="cursor">
   <div class="cursor-border">
      <span class="text">VIEW</span>
   </div>
</div>
const CustomCursor = require('custom-cursor.js').default
new CustomCursor('.cursor', {
   hideTrueCursor: true,
   focusElements: [
      {
         selector: '.photo-link',
         focusClass: 'cursor--focused-view',
      },
      'a',
   ],
})
   .setPosition(-30, -30)
   .initialize()
.cursor {
   color: #ff5050;
   display: none;
   pointer-events: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   top: 0;
   left: 0;
   position: fixed;
   will-change: transform;
   z-index: 1000;
}

.cursor-border {
   position: absolute;
   box-sizing: border-box;
   align-items: center;
   border: 1px solid #ff5050;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   height: 60px;
   width: 60px;
   left: 0;
   top: 0;
   transform: translate(-50%, -50%);
   transition: all 360ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cursor.cursor--initialized {
   display: block;
}

.cursor .text {
   font-size: 0.875rem;
   opacity: 0;
   transition: opacity 80ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cursor.cursor--off-screen {
   opacity: 0;
}

.cursor.cursor--focused .cursor-border,
.cursor.cursor--focused-view .cursor-border {
   width: 90px;
   height: 90px;
}

.cursor.cursor--focused-view .text {
   opacity: 1;
   transition: opacity 360ms cubic-bezier(0.23, 1, 0.32, 1);
}