All Projects â†’ lusaxweb â†’ Kursor

lusaxweb / Kursor

Licence: MIT license
Cursor style with javascript and css

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects
shell
77523 projects

Projects that are alternatives of or similar to Kursor

linearmouse
ðŸ–ą The mouse and trackpad utility for Mac.
Stars: ✭ 1,151 (+722.14%)
Mutual labels:  mouse, cursor
macOS-cursors-for-Windows
Tested in Windows 10 & 11, 4K, 125%, 150%, 200%. With 2 versions, 2 types and 3 different sizes!
Stars: ✭ 578 (+312.86%)
Mutual labels:  cursor, cursors
react-sticky-mouse-tooltip
React tooltip component that follow mouse cursor.
Stars: ✭ 17 (-87.86%)
Mutual labels:  mouse, cursor
lime
A library for drawing graphics on the console screen
Stars: ✭ 32 (-77.14%)
Mutual labels:  mouse, cursor
Creepyface
A JavaScript library that makes your face follow the pointer. ðŸĪŠðŸ–ąïļðŸ‘†
Stars: ✭ 412 (+194.29%)
Mutual labels:  mouse, javascript-library
React Cursor Position
A React component that decorates its children with mouse and touch coordinates relative to itself.
Stars: ✭ 136 (-2.86%)
Mutual labels:  mouse, cursor
Naturalmousemotion
This library provides a way to move cursor to specified coordinates on screen reliably, while being randomly arced to look like real hand moved it there by using a mouse. The default settings should look good enough for most cases, but if user wishes, they can heavily customize the settings and implementations responsible for the trajectory of the cursor for specific use cases.
Stars: ✭ 117 (-16.43%)
Mutual labels:  mouse, cursor
Hideit.sh
Automagically hide/show a window by its name when the cursor is within a defined region or you mouse over it.
Stars: ✭ 171 (+22.14%)
Mutual labels:  mouse, cursor
jackson-js
JavaScript object serialization and deserialization library using decorators. It supports also advanced Object concepts such as polymorphism, Object identity and cyclic objects.
Stars: ✭ 86 (-38.57%)
Mutual labels:  javascript-library
w-components
JavaScript library based on Web Components.
Stars: ✭ 17 (-87.86%)
Mutual labels:  javascript-library
onli-reducer
⚛ïļ One line reducer. State management without boilerplate.
Stars: ✭ 31 (-77.86%)
Mutual labels:  javascript-library
sane-reports
Reports library that will keep you sane and not pulling your hair out
Stars: ✭ 47 (-66.43%)
Mutual labels:  javascript-library
MLweb
Machine learning and scientific computing (linear algebra, statistics, optimization) javascript libraries, with an online lab.
Stars: ✭ 85 (-39.29%)
Mutual labels:  javascript-library
tomloprodModal
tomloprodModal is a configurable pure javascript library to create responsive and minimalist modal windows with no dependencies.
Stars: ✭ 17 (-87.86%)
Mutual labels:  javascript-library
enterprise
Enterprise-grade component library for the Infor Design System
Stars: ✭ 117 (-16.43%)
Mutual labels:  javascript-library
discord.js-Moderation-Bot
.Learning how to code in the library discord.js
Stars: ✭ 57 (-59.29%)
Mutual labels:  javascript-library
imtool
🖞ïļ Client-side canvas-based image manipulation library.
Stars: ✭ 38 (-72.86%)
Mutual labels:  javascript-library
keyboard mouse emulate on raspberry
Bluetooth Keyboard Mouse Emulator on Raspberry Pi
Stars: ✭ 230 (+64.29%)
Mutual labels:  mouse
groucho
Know all your users. Scalable front-end (anon) personalization & attribution
Stars: ✭ 31 (-77.86%)
Mutual labels:  javascript-library
shikijs
A JavaScript Library for Syntax Highlighting with Awesome themes
Stars: ✭ 21 (-85%)
Mutual labels:  javascript-library

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

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <link rel="stylesheet" href="./dist/kursor.css">

  <style>
    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);
    }
  </style>
</head>
<body>

  <button class="button k-hover1">Hello World</button>

</body>

<script src="./dist/kursor.js"></script>

<script>
  var kursorx = new kursor({
    type: 1,
  })
</script>
</html>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].