【共有創造】react-typewriter-hook:react Hookでタイプライターの効果を実現する
475 ワード
react-typewriter-hook
⌨️ react Hook sを使って、簡単にタイプライターの効果を実現します.
インストール
View example at codesandbox
使用
⌨️ react Hook sを使って、簡単にタイプライターの効果を実現します.
インストール
npm i react-typewriter-hook --save
例View example at codesandbox
使用
// useTypewriter will do these things
// Once Word changed, typewritter will automatically erase last word
// Then type down new word
import useTypewriter from "react-typewriter-hook"
function MagicWriter(word) {
const typing = useTypewriter(word)
return typing
}