用JS控制GIF动画。播放,停止,向后播放

时间:2016-09-07 16:18:38

标签: javascript jquery animation canvas animated-gif

我想要实现的是互动式动画徽标。默认情况下,它在第1帧上。当悬停时,它会向前播放并在最后一帧停止。在mouseleave上,它从最后一帧到第一帧(向后)播放并在第一帧停止。如果在前向动画期间鼠标移动 - >获得当前帧并向后播放。

我尝试使用画布和精灵来做到这一点,但这非常具有挑战性。事实上,我并不是真的了解它。我试过this plugin,但它的可能性有限。

所以我想知道我是否可以使用GIF做到这一点?也许我可以获得当前的动画帧并从该帧向后播放gif?

1 个答案:

答案 0 :(得分:1)

是的,您可以使用一些js lib控制gif,如下所示:https://github.com/buzzfeed/libgif-js

HTML:

```

    <div id="controller-bar">
      <button id="backward" href="#">|< Step back </button>&nbsp;&nbsp;
      <button id="play" href="#"> Play | Pause </button>&nbsp;&nbsp;
      <button id="forward" href="#"> Step forward >|</button>
    </div>

```

javascript(使用jQuery):

```

var gif = new SuperGif({
  gif: document.getElementById('example'),
  loop_mode: 'auto',
  auto_play: true,
  draw_while_loading: false,
  show_progress_bar: true,
  progressbar_height: 10,
  progressbar_foreground_color: 'rgba(0, 255, 4, 0.1)',
  progressbar_background_color: 'rgba(255,255,255,0.8)'

});


gif.load(function(){
  document.getElementById("controller-bar").style.visibility = 'visible';
  loaded = true;
  console.log('loaded');
});


$('button#backward').click(function(){
  console.log('current: ', gif.get_current_frame());
  var total_frames = gif.get_length();
  gif.pause();
  if(gif.get_current_frame() == 0) {
    gif.move_to(total_frames-1);
  } else {
    gif.move_relative(-1);
  }
  console.log('next: ', gif.get_current_frame());
})


$('button#play').click(function(){
  console.log('iam play');
  if(gif.get_playing()){
    gif.pause();
  } else {
    gif.play();
  }
})

$('button#forward').click(function(){
  console.log('current: ', gif.get_current_frame());
  gif.pause();
  gif.move_relative(1);
  console.log('next: ', gif.get_current_frame());
})

```