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

cursor-style

v1.3.3

Published

Multiple choose cursors prebuilt to choose from

Downloads

49

Readme

Prebuilt Cursor Styles

Elevate your web application's user experience with cursor-style, a sophisticated library designed to customize and animate the cursor. From adding elegance and interactivity to standing out, cursor-style provides an array of options to enhance your site's interactive elements with minimal effort.

npm

1. installation

npm install cursor-style

2. Features

  • Custom Cursor Shapes: Easily transform the default cursor into a variety of shapes to match the context of different web page elements.

  • Cursor Animations: Introduce animations to the cursor for interactive feedback in a stylish and engaging manner.

  • Seamless Integration: Effortlessly integrate cursor-style into any web project with just a few lines of code.

  • Extensive Configurability: Tailor size, color, animation speed, and more to perfectly align with your site's aesthetic.

  • Optimized Performance: Engineered for efficiency, ensuring fluid animations that do not hinder site responsiveness.

  • Flexible Configuration: Features such as optional movement delay allow for dynamic interaction customization.

  • Bug Fixes and Improvements:

    • Fixed issue where cursors would not center correctly at larger sizes.

    • Adjusted animation speeds for improved consistency across different cursor types.

    • Resolved bug where the delay prop was incorrectly required, now allowing for more flexible configuration.

3. New in This Release

  • Optional delay Prop: Introduced flexibility in cursor movement, allowing for immediate or delayed cursor response.

  • size Customization: New property to adjust the cursor size, enabling better control over the cursor's appearance.

  • Background Color Options: Added bgColor, bgColorDot, and bgColorOutline props to customize the cursor's color scheme to fit your design.

  • Unique Cursor Components: Expanded the cursor library with distinct styles, each supporting specific customizations:

    • CursorOne: Offers a simple, elegant cursor with size and background color customization.
    • CursorTwo: Features a dot and outline design, with additional sizeDot and sizeOutline props for intricate adjustments.
    • CursorThree: A minimalist approach with a transparent cursor that supports border customization.
  • Enhanced Performance: Optimizations ensure smoother animations and responsiveness, even with multiple custom cursors active.

Comprehensive Customization: Beyond size and color, props like useMixBlendDifferenc` provide creative control over blending modes, allowing for dynamic visual effects that react to web page backgrounds.

4. Demo

Live Demo

5. Visualisation

First Cursor

Second Cursor

Third Cursor

6. Usage

Basic Usage

Integrate custom cursors into your project with ease. Here are examples for each cursor type, showcasing how to utilize various props for customization:

CursorOne - Basic Circle

import { CursorOne } from "cursor-style";

function App() {
  return (
    <CursorOne size={30} delay={5} bgColor="red" useMixBlendDifference={true} />
  );
}

CursorTwo - Dot and Outline

import { CursorTwo } from "cursor-style";

function App() {
  return (
    <CursorTwo
      size={40}
      delay={5}
      sizeDot={10}
      sizeOutline={35}
      bgColorDot="blue"
      bgColorOutline="green"
    />
  );
}

CursorThree - Transparent with Border

import { CursorThree } from "cursor-style";

function App() {
  return <CursorThree size={25} delay={2} />;
}

CustomCursor - Flexible Type Selection

import { CustomCursor } from "cursor-style";

function App() {
  return (
    <CustomCursor
      type="two"
      size={40}
      delay={5}
      sizeDot={15}
      sizeOutline={30}
      bgColorDot="purple"
      bgColorOutline="yellow"
    />
  );
}

6. Customization

Each cursor component accepts specific props for customization:

  • size: Adjusts the overall size of the cursor.

  • delay: Alters the movement delay, creating a trailing effect.

  • bgColor, bgColorDot, bgColorOutline: Customizes the color for different cursor elements.

  • sizeDot, sizeOutline: Specifically for CursorTwo, these props adjust the sizes of the dot and outline elements.

7. Support

Encountered an issue or have a feature request? Reach out through my Github account

8. Contributing

Contributions are welcome! Please see our contributing guidelines for more details.