正在检查iPad上的视频结尾

Checking for end of video on iPad

本文关键字:的视频 结尾 iPad 检查      更新时间:2023-09-26

我似乎听不到iPad(Safari)上的视频。。。我想删除一个在按下播放按钮时可以添加的类,但我似乎无法追踪视频何时结束(在其他地方都很好,包括iphone,只需要它用于iPad/Safari)

此处链接:http://www.artandseek.net/meyerson/tour/

此处的代码片段

$(".playBtn").click(function(){
            var thisVideo = $(this).prevAll(".img-wrap").children(".togglePlay").get(0);

                thisVideo.onended = function(e) {
                        $(this).fadeOut().parent(".img-wrap").removeClass("playing");
                        $(this).parent().next("h2").fadeIn();
                        classie.remove( thisVideo, 'tabletActive');
                        }; ...

我在这里找到了答案:使用jQuery 将播放/暂停/结束功能绑定到HTML5视频

使用此:$(thisVideo).bind('ended', function () { console.log('working'); });