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

type-hangul

v0.2.4

Published

한글 타이핑 효과

Downloads

1,556

Readme

type-hangul

⌨️ 한글 타이핑 효과 라이브러리

https://sduck4.github.io/type-hangul/

개요

데모

윤동주, 서시

한글 두벌식 자판에서 한 글자씩 타이핑되는 과정을 보여줄 수 있는 라이브러리입니다.

설치

CDN

한글 자모음 처리에 Hangul-js를 사용하고 있습니다.

Hangul-jstype-hangul을 따로 로드하려면 아래 코드를 사용하세요.

<!-- 의존 라이브러리와 별개로 로드 -->
<script src="https://unpkg.com/hangul-js"></script>
<script src="https://unpkg.com/type-hangul@latest/dist/type-hangul.min.js"></script>

Hangul-js를 번들링한 type-hangul을 로드하려면 아래 코드를 사용하세요.

<!-- 의존 라이브러리 번들한 파일 로드 -->
<script src="https://unpkg.com/type-hangul"></script>

직접 다운로드

GitHub Releases에서 최신 릴리즈를 직접 다운로드 받아 사용하실 수 있습니다.

사용법

<div id="target">안녕하세요.</div>
<script>
    TypeHangul.type('#target');
</script>

TypeHangul.type(selector [, options])

  • selector: 타이핑 효과를 출력할 DOM의 CSS Selector, 필수
  • options: 효과 옵션, 생략 가능

옵션

text

  • 타입: string
  • 기본값: null

출력할 텍스트를 설정합니다. 설정하지 않을 경우, selector로 선택한 DOM의 텍스트를 출력합니다.

append

  • 타입: boolean
  • 기본값: false

기존 텍스트 뒤에 이어서 출력할 지 여부를 설정합니다. true로 설정할 경우, selector로 선택한 DOM의 텍스트 뒤에 이어서 출력합니다.

intervalType

  • 타입: number
  • 기본값: 120

타이핑 사이 시간 간격을 설정합니다.

humanize

  • 타입: number|function
  • 기본값: null

실제 사람이 타이핑하는 것처럼 매 타이핑 마다 intervalType를 랜덤화합니다.

number을 설정할 경우, 해당 비율만큼 intervalType을 랜덤화합니다. 예를 들어, 다음과 같은 옵션인 경우

{
    intervalType: 100,
    humanize: 0.5,
}

intervalType은 원래 값의 0.5배인 50부터 1.5배인 150 사이의 랜덤한 값으로 설정됩니다.

function을 설정한 경우, 해당 함수를 사용해 intervalType을 랜덤화합니다. 함수의 첫 번째 매개변수로 intervalType 값이 주어집니다.

이벤트

타이핑 진행 과정에 따라 selector로 선택된 DOM에 이벤트(CustomEvent)를 발생시킵니다. 이벤트 리스너의 첫 번째 매개변수 edetail로 이벤트 데이터를 전달합니다.

<div id="target">타이핑</div>
<script>
    var $target = document.querySelector('#target');
    $target.addEventListener('th.afterType', function (e) {
        console.log(e.detail.progress);
    });
    TypeHangul.type('#target');
</script>
ㅌ
타
탕
타이
타잎
타이피
타이핑

th.startType

  • target: 타이핑 효과 대상 DOM
  • options: type() 호출 시 옵션과 기본 옵션을 합친 객체

타이핑을 시작할 때 발생합니다.

th.startType 이벤트는 type() 호출 직후에 이벤트가 발생합니다. 이벤트 리스너가 정상적으로 동작하기 위해서는 type() 호출 이전에 리스너를 추가하세요.

th.endType

  • target: 타이핑 효과 대상 DOM
  • options: type() 호출 시 옵션과 기본 옵션을 합친 객체

타이핑을 종료할 때 발생합니다.

th.beforeType

  • target: 타이핑 효과 대상 DOM
  • options: type() 호출 시 옵션과 기본 옵션을 합친 객체
  • progress: 현재까지 출력한 타이핑 텍스트
  • typeChar: 이번에 타이핑할 문자

매번 타이핑 이전에 발생합니다.

th.afterType

  • target: 타이핑 효과 대상 DOM
  • options: type() 호출 시 옵션과 기본 옵션을 합친 객체
  • progress: 현재까지 출력한 타이핑 텍스트
  • typeChar: 이번에 타이핑한 문자

매번 타이핑 이후에 발생합니다.

License

MIT