1

我正在使用这个视频播放器http://1.s3.envato.com/files/16280451/bottomPlaylist/universalWhite_preview.html并且我想在其中添加滑动功能,以便它支持所有触摸设备。我正在使用 TochSwipe 链接http://labs.skinkers.com/touchSwipe/。我只是做了一个小实验并添加了这个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);
        }

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

4

0 回答 0