video poster on pause
I'm using the following trick to avoid the bug of videos caching in chrome
$("video").each(function(index){
$(this).get(0).load();
$(this).get(0).addEventListener("canplaythrough", function(){
this.play();
this.pause();
});
});
The thing is, that it messes with the poster image (which is not the first frame in the video)
All the solutions I see to returning to the poster is reloading the video - won't it get me back to the same trouble?
So in short:
How do I get the poster image back after the play/pause...
コメント