sjkim24 / cursor-dot

🖱️Fancy cursor dot

Home Page:https://codesandbox.io/s/focused-ellis-g9mpm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cursor-dot

A vanilla JavaScript library which creates customizable, interactive cursor effects when hovering over certain elements.

Say Thanks!

English | 简体中文

Installation 🏗️

$ yarn add cursor-dot

Usage 🍹

import curDot from 'cursor-dot'

const cursor = curDot()
// or, set as you want
// cursor({
//   diameter: 80,
//   borderWidth: 1,
//   borderColor: 'transparent',
//   easing: 4,
//   background: '#fff'
// })

cursor.over('span.selector', {
  borderColor: 'rgba(255,255,255,.38)',
  broderWidth: 2
})

cursor.over($('El'), {
  scale: .5,
  background: '#fff'
})

Donate

About

🖱️Fancy cursor dot

https://codesandbox.io/s/focused-ellis-g9mpm

License:MIT License


Languages

Language:JavaScript 46.2%Language:HTML 40.7%Language:CSS 13.1%