0

次と前のボタンがあるカルーサルにYoutubeビデオをフェッチしています。デモリンクも追加しました..

タイトル、説明、[次へ] ボタンと [前へ] ボタンの合計ビューを変更する方法

    <script type="text/javascript">
$(document).ready(function(){});

var playListURL = 'http://gdata.youtube.com/feeds/api/playlists/cZxy-GpHLCQ_Ss9sGJfWhzBAIOMDYxMN?v=2&alt=json&callback=?';
var videoURL= 'http://www.youtube.com/watch?v=';
$.getJSON(playListURL, function(data) {
var list_data="";
$.each(data.feed.entry, function(i, item) {
var feedTitle = item.title.$t;
var feedURL = item.link[1].href;
var fragments = feedURL.split("/");
var videoID = fragments[fragments.length - 2];
var url = videoURL + videoID;
var thumb = "http://img.youtube.com/vi/"+ videoID +"/default.jpg";
list_data += '<div><a href= "#" title="'+ feedTitle +'"><img src="'+ thumb +'" width="213px" height="141px"/></a></div>';
});
$(list_data).appendTo(".slides");
$('.carousel').carousel({carouselWidth:930,carouselHeight:330,directionNav:true,shadow:true,buttonNav:'bullets'});

var cnt = 0;
$(".nextButton").click(function () {
var len = $(this).siblings(".slides").children(".slideItem").length;
var a = cnt++;



  });

});
</script>

ここにデモリンクがありますhttp://jsfiddle.net/EzKQy/

4

2 に答える 2

1

ライブラリが提供するプロパティとは別に、

2つのcss属性に基づいて最上位のアイテムを選択できます。

  • top=のアイテム0px

  • z-index=のアイテム<Total Slides-1>

したがって、次のスニペットでそれを実行する必要があります(タイトルも更新します):

var $items = $(".slides").find(".slideItem");
$(".nextButton, .prevButton").click(function () {
$("#title").text($items.filter(function () {
        return $(this).css("top") == "0px";
   }).find("a").attr("title"));
});

そして、これがあなたの更新されたフィドルです。

于 2013-02-24T04:18:49.837 に答える
0

youtube API v2によると、

> The API response for a playlist feed is almost identical to a typical
> video feed or set of search results. However, a video entry in a
> playlist feed differs from a typical video entry in the following
> ways:
> 
> Each playlist entry contains the <yt:position> tag, which specifies
> the place that the video appears in the playlist order. The
> <yt:position> tag is a subtag of the <entry> tag.
> 
> If the user defined a custom title for the video, that title appears
> in the <atom:title> tag, and the video's original title appears in the
> <media:title> tag.

したがって、問題の解決策は、受け取った JSON からタイトルの yt:position を取得することです。次のボタンを次の兄弟の yt:position にフックし、前のボタンを前の兄弟にフックします。また、創造性を発揮して、これに基づいてビデオをランダムにシャッフルすることもできます。

于 2013-02-23T19:39:02.800 に答える