html5 video redisplay poster image onMouseOut

前端 未结 5 692
我寻月下人不归
我寻月下人不归 2021-01-06 03:22

How can I \'stop\' a html5 video playback, and revert to poster image? Until this.play() is called, the poster image is showing properly.

My code:

5条回答
  •  梦谈多话
    2021-01-06 04:23

    i used it and it is good with me

    $('container video').hover(function () {$(this).get(0).play();}
       ,function () {$(this).get(0).load();});});
    

提交回复
热议问题