A headless mouse trail cursor for Svelte
- Completely customisable styling
- Extendable cursor states: hover, drag, disappear
You can install library from NPM using yarn or npm
yarn add svelte-cursor
Installing the package will add a global component called Cursor
to your project. You can use it like this:
<script>
import { Cursor } from 'svelte-cursor';
</script>
<Cursor>
<div class="cursor" />
</Cursor>
You can then style the cursor however you want. For example:
.cursor {
width: 20px;
aspect-ratio: 1;
background-color: white;
border-radius: 50%;
}
Cursor
has the ability to change states when hovering over objects. To enable this, you need to add the Interactive
component around the element you want the behavior to apply to. For example:
<Interactive>
<a href="/">A link element</a>
</Interactive>
By default, the Interactive
component will expose the hover state to the Cursor
component. You can change this by passing a state
prop to the Interactive
component. For example:
<Interactive state="drag"> ... </Interactive>
This will expose the drag state to the Cursor
component. You can then style the cursor based on the state like so:
<Cursor let:state>
<div class:draggable={state === 'drag'>
Drag me
</div>
</Cursor>
<style>
.draggable {
padding: 5px;
backdrop-filter: blur(5px);
background-color: rgba(255, 255, 255, 0.25);
border: 1px solid rgba(255, 255, 255, 0.5);
color: white;
}
</style>
MIT