Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lusaxweb/Kursor

Cursor style with javascript and css
https://github.com/lusaxweb/Kursor

css cursor cursors javascript-library js kursor kursorjs library mouse mouse-emulation stylus

Last synced: about 2 months ago
JSON representation

Cursor style with javascript and css

Awesome Lists containing this project

README

        


vuesax

# Kursorjs

New library to facilitate the creation of custom cursors, which are in trend with the new web pages

## In Beta

Is a new library and in (**BETA**) you can use it for projects in production if you are an adventurer

## Documents

Soon they will update and create the documents ...

## Use

```html




Document


body {
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

button {
padding: 15px;
border: 0px;
border: 2px solid rgb(0, 100, 200);
color: rgb(0, 100, 200);
transition: all .25s ease;
background: transparent
}

button:hover {
background: rgb(0, 100, 200);
color: rgb(255,255,255);
}

Hello World

var kursorx = new kursor({
type: 1,
})

```