私はこのビデオ プレーヤー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);
}
でもうまくいかなかったので、基本的には動画をスワイプすると動画が切り替わるスワイプ機能を実装したい