Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(gif): replace it by video #2

Open
agatha197 opened this issue Nov 6, 2020 · 0 comments
Open

fix(gif): replace it by video #2

agatha197 opened this issue Nov 6, 2020 · 0 comments

Comments

@agatha197
Copy link
Contributor

gif

gif는 압축 효율이 없습니다.

그냥 html5의 강력한 video 재생 기능을 빌리는 게 최종 사용자 입장에서 나을 수 있습니다.

이렇게요.

<video autoplay loop muted playsinline>
  <source src="my-animation.webm" type="video/webm">
  <source src="my-animation.mp4" type="video/mp4">
</video>

여기 제 입장을 대변하는 아주 좋은 글이 있네요.

참고해보시면 좋을 듯 합니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant