1.1.0 • Published 2 years ago

@n.see/gif-player v1.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

gif-player

安装

npm install @n.see/gif-player --save

使用

template
<div
    class="git-player"
    data-src="/src/assets/03.gif"
    data-width="500"
></div>
script
import { onMounted } from 'vue';
import GifPlayer from '@n.see/gif-player';

onMounted(() => {
    GifPlayer.run('.git-player');
});