Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lusaxweb/Kursor
- Owner: lusaxweb
- License: mit
- Created: 2019-05-16T04:58:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T02:41:30.000Z (about 2 years ago)
- Last Synced: 2024-11-16T21:32:51.778Z (2 months ago)
- Topics: css, cursor, cursors, javascript-library, js, kursor, kursorjs, library, mouse, mouse-emulation, stylus
- Language: JavaScript
- Homepage: https://lusaxweb.github.io/Kursor/
- Size: 1.95 MB
- Stars: 173
- Watchers: 6
- Forks: 100
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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,
})```