npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@makecode/gesture-manager

v1.0.0

Published

제스처(gesture) 관리

Downloads

65

Readme

@makecode/gesture-manager

@makecode/gesture-manager는 웹 애플리케이션에서 다양한 제스처(터치 및 클릭 동작)를 쉽게 관리할 수 있도록 도와주는 경량화된 라이브러리입니다. 단일 탭(Single Tap), 더블 탭(Double Tap), 플릭(Flick) 등과 같은 제스처를 감지하여 효율적으로 처리할 수 있습니다.

📦 설치

npm install @makecode/gesture-manager

또는

yarn add @makecode/gesture-manager

🚀 특징

  • 터치 이벤트 지원: 모바일 환경에서의 터치 제스처 감지.
  • 제스처 타입: press, singleTap, doubleTap, flickLeftToRight, flickRightToLeft, flickTopToBottom, flickBottomToTop 등 다양한 이벤트 지원.
  • 유연한 API: 손쉬운 이벤트 등록 및 해제.
  • 경량성: 최소한의 코드로 빠르게 동작.

✨ 사용법

이벤트 등록

import GestureManager from '@makecode/gesture-manager';

// 제스처 이벤트 등록
GestureManager.on('.gesture-target', {
  singleTap: event => {
    console.log('Single tap detected!', event);
  },
  doubleTap: event => {
    console.log('Double tap detected!', event);
  },
  flickLeftToRight: event => {
    console.log('Flick from left to right!', event);
  },
});

이벤트 해제

특정 제스처 이벤트를 해제하려면 다음과 같이 사용할 수 있습니다:

// 모든 제스처 이벤트 해제
GestureManager.off('.gesture-target');

// 특정 제스처 이벤트 해제
GestureManager.off('.gesture-target', 'doubleTap');

📖 API

GestureManager.on(selector: string, handler: object | function)

  • selector: 이벤트를 등록할 DOM 요소를 선택하는 CSS 셀렉터 문자열.
  • handler: 제스처 이벤트 핸들러 객체 또는 함수. 객체는 각 이벤트 타입(singleTap, doubleTap 등)을 키로 가지며, 해당하는 콜백 함수를 값으로 가집니다.

GestureManager.off(selector: string, eventType?: string)

  • selector: 이벤트를 해제할 DOM 요소를 선택하는 CSS 셀렉터 문자열.
  • eventType: 선택적으로 해제할 이벤트 타입을 지정 (press, singleTap, doubleTap 등). 지정하지 않으면 모든 이벤트가 해제됩니다.

📋 지원하는 제스처 타입

  • press: 길게 누름.
  • singleTap: 한 번 가볍게 터치.
  • doubleTap: 두 번 빠르게 터치.
  • flickLeftToRight: 왼쪽에서 오른쪽으로 빠르게 스와이프.
  • flickRightToLeft: 오른쪽에서 왼쪽으로 빠르게 스와이프.
  • flickTopToBottom: 위에서 아래로 빠르게 스와이프.
  • flickBottomToTop: 아래에서 위로 빠르게 스와이프.

🔧 브라우저 지원

@makecode/gesture-manager는 최신 브라우저와 모바일 환경을 지원합니다. 터치 이벤트를 기본으로 하며, 터치를 지원하지 않는 환경에서는 마우스 이벤트로 대체하여 동작합니다.