Velocity.js 一時停止・再生機能について
Velocity.js、アニメーションさせる際にはCSSで動かすよりも圧倒的パフォーマンスを出すことで非常に便利なのですが、とある機能の日本語情報が見受けられなかったのでここに記載します!
一時停止 → 再生機能
stop()メソッドはあるのですが、いわゆる「一時停止→再生」するもののドキュメント情報が公式サイトがありませんでした(しかもstop()だと完全停止しちゃう)。
GithubのIssueで「一時停止・再生機能つけてくれ頼む」という話はあったのですが、肝心の作者がやる気を喪失していたので、本人からの実装には期待が0になり、以下のようなテクニカルであまり汎用的ではない方法で一時停止・再生する機能をつけるようにやっていました。
See the Pen Velocity.js - Pause/Resume animation by William Lindner (@wlindner) on CodePen.
https://codepen.io/wlindner/pen/ykIzw
google日本語検索でもそれに関する記事は見受けられませんでした。
しかし、1人のContributiorの活躍により 2016年11月に一時停止・再生機能が実装されました。
実装例
$(function(){
$('.hover').velocity({
scale: [1, 0.6]
},
{
duration: 1500,
complete: function(){
$(this).velocity({
scale: [0.6, 1]
}, {
duration: 1500,
loop: true
});
}
});
$('.hover').hover(function(){
$(this).velocity('pause');
},function(){
$(this).velocity('resume');
});
});
デモ
$(function(){
$('.hover').velocity({
scale: [1, 0.6]
},
{
duration: 1500,
complete: function(){
$(this).velocity({
scale: [0.6, 1]
}, {
duration: 1500,
loop: true
});
}
});
$('.hover').hover(function(){
$(this).velocity('pause');
},function(){
$(this).velocity('resume');
});
});
https://jsfiddle.net/g09jkr80/1/
得られた教訓
公式ドキュメント、アップデート情報はちゃんと調べてちゃんと読もう!!!!!
以上学びでした。
余談ですがReact用のvelocity.jsプラグインがあります
https://github.com/twitter-fabric/velocity-react
おっきなとこが管理してるので安心☺
Author And Source
この問題について(Velocity.js 一時停止・再生機能について), 我々は、より多くの情報をここで見つけました https://qiita.com/yamanoku/items/23e56a428aaa4fad7040著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .