在HTML5视频播放器中添加滑动功能

时间:2012-05-09 06:48:00

标签: jquery jquery-plugins jquery-mobile html5-video

我正在使用此视频播放器http://1.s3.envato.com/files/16280451/bottomPlaylist/universalWhite_preview.html,我想在其中添加滑动功能,以便它支持所有触控设备。我正在使用TochSwipe链接http://labs.skinkers.com/touchSwipe/.I只需做一点实验并添加此功能jquery的

 $("#vp2_html5_bottomPlaylist_UB").swipe(swipeLeft);
        function swipeLeft(event)
        {
            jQuery(thumbsHolder_Thumbs[current_img_no]).removeClass('thumbsHolder_ThumbON');

                if (current_img_no==total_images-1)
                    current_img_no=0;
                else
                    current_img_no++;

                changeSrcAndPoster(options.autoPlay);
        }

但它没有成功。所以基本上我想实现滑动功能,当我在视频上滑动时会改变视频

0 个答案:

没有答案