Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

👇Bread n butter utility for component-tied mouse/touch gestures in React and Vanilla Javascript.

License

NotificationsYou must be signed in to change notification settings

dandycheung/use-gesture

 
 

Repository files navigation

npm (tag)npm bundle sizeNPMDiscord Shield

@use-gesture is a library that lets you bind richer mouse and touch events to any component or view. With the data you receive, it becomes trivial to set up gestures, and often takes no more than a few lines of code.

You can use it stand-alone, but to make the most of it you should combine it with an animation library likereact-spring, though you can most certainly use any other.

The demos are real click them!

Installation

React

#Yarnyarn add @use-gesture/react#NPMnpm install @use-gesture/react

Vanilla javascript

#Yarnyarn add @use-gesture/vanilla#NPMnpm install @use-gesture/vanilla

Simple example

React
import{useSpring,animated}from'@react-spring/web'import{useDrag}from'@use-gesture/react'functionExample(){const[{ x, y},api]=useSpring(()=>({x:0,y:0}))// Set the drag hook and define component movement based on gesture data.constbind=useDrag(({ down,movement:[mx,my]})=>{api.start({x:down ?mx :0,y:down ?my :0})})// Bind it to a component.return<animated.div{...bind()}style={{ x, y,touchAction:'none'}}/>}
Vanilla javascript
<!-- index.html --><divid="drag"/>
// script.jsconstel=document.getElementById('drag')constgesture=newDragGesture(el,({ active,movement:[mx,my]})=>{setActive(active)anime({targets:el,translateX:active ?mx :0,translateY:active ?my :0,duration:active ?0 :1000})})// when you want to remove the listenergesture.destroy()

The example above makes adiv draggable so that it follows your mouse on drag, and returns to its initial position on release.

Make sure you always settouchAction on a draggable element to prevent glitches with the browser native scrolling on touch devices.

Available hooks

@use-gesture/react exports several hooks that can handle different gestures:

HookDescription
useDragHandles the drag gesture
useMoveHandles mouse move events
useHoverHandles mouse enter and mouse leave events
useScrollHandles scroll events
useWheelHandles wheel events
usePinchHandles the pinch gesture
useGestureHandles multiple gestures in one hook

About

👇Bread n butter utility for component-tied mouse/touch gestures in React and Vanilla Javascript.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript98.9%
  • JavaScript1.1%

[8]ページ先頭

©2009-2025 Movatter.jp