To use the finished animation easily
npm install --save finished-animation
`
$3
##### HTML code
`html
fill text!
`
##### Javascript code
` javascript
import { fillText } from "finished-animation/text";
import { hover } from "finished-animation/util";
const animation = fillText({
target:'.header',
});
hover('.header', animation);
`
$3
패키지 매니저를 사용하지 않는다면, 다음의 Github 저장소에서 코드를 다운로드하세요.
$3
##### HTML code
`html
fill text!
`
##### Javascript code
`javascript
var animation = fillText({
target:'.header',
});
hover('.header', animation);
``