- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经完成一半了。我使用的脚本允许您使用 JQuery、CSS 和 HTML 将 YouTube 播放列表嵌入到任何网页。
代码运行良好,但唯一的问题是我不确定如何一次在一个网页上实现多个播放列表。
我开发了一个 codepen(如下),它提出了当前的主要问题。
当前有三个播放列表,但仅显示第一个,而其他两个根本不显示。不确定这是否与 YouTube 的 API、脚本配置或其他方面有关。
有人可以帮我吗?
引用:https://codepen.io/anon/pen/NaygEm
(function() {
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0]; //Find the first script tag in the html
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); //Put this script tag before the first one
var player; //The Youtube API player
var playlistID = $('#ytpl-player').data('pl');
var $ul = $('#ytpl-thumbs');
var nowPlaying = "ytpl-playing";
var nowPlayingClass = "." + nowPlaying;
function getPlaylistData() {
var apiKey = 'AIzaSyDI4rWo_wVAxRZEIgF6_8sRZDj8OCOZZ38';
var url = 'https://www.googleapis.com/youtube/v3/playlistItems?part=snippet';
var data = {
'playlistId': playlistID,
'key': apiKey,
'maxResults': 4
}
$.get(url, data, function(e) {
buildHTML(e.items)
})
}
function buildHTML(data) {
var list_data = '';
data.forEach(function(e, i) {
var item = e.snippet;
if (item.thumbnails) {
list_data += '<li><button data-ytpl-index="'+ i +'" data-ytpl-title="' + item.title + '" data-ytpl-desc="' + item.description + '"><p>' + item.title + '</p><img alt="'+ item.title +'" src="'+ item.thumbnails.medium.url +'"/></button></li>';
}
})
$ul.html(list_data);
//
// $('.ytpl-flexslider').flexslider({
// animation: "slide",
// startAt: 0,
// slideshow: false,
// touch: true,
// prevText: "",
// itemWidth: "25%",
// nextText: "",
// pausePlay: !0,
// pauseText: "Pause",
// playText: "Play",
// pauseOnHover: !0,
// useCSS: true
// })
}
// generate playlist items once main player has loaded
function onPlayerReady(event) {
getPlaylistData();
}
window.onYouTubeIframeAPIReady = function() {
var player = new YT.Player('ytpl-player', {
height: '360',
width: '640',
playerVars: {
listType:'playlist',
list: playlistID
},
events: {
'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
function updateTitles($this) {
$('#ytpl-title').text( $this.data('ytpl-title') )
$('#ytpl-desc').text( $this.data('ytpl-desc') )
}
function onPlayerStateChange(e) {
var $buttons = $ul.find('button');
var currentIndex = player.getPlaylistIndex();
// remove existing active class, add to currently playing
if (e.data === YT.PlayerState.PLAYING) {
$buttons.removeClass(nowPlaying);
$buttons.eq(currentIndex).addClass(nowPlaying);
}
// if last video has finished playing
if (e.data === YT.PlayerState.ENDED && currentIndex === $buttons.length - 1) {
$buttons.removeClass(nowPlaying);
}
updateTitles($buttons.eq(currentIndex))
}
// handle playlist button click
$(document).on('click', '[data-ytpl-index]:not(".ytpl-playing")',function(e) {
e.preventDefault();
var $this = $(this);
var index = $this.data('ytpl-index');
updateTitles($this);
if (navigator.userAgent.match(/(iPad|iPhone|iPod)/g)) {
player.cuePlaylist({
listType: 'playlist',
list: playlistID,
index: index,
suggestedQuality: 'hd720' //quality is required for cue to work, for now. https://code.google.com/p/gdata-issues/issues/detail?id=5411
});
} else {
player.playVideoAt(index); //Play the new video, does not work for IOS 7
}
});
};
})();
最佳答案
您对多个 div
使用相同的 id
。您只能指定一个唯一的id
。您可以使用 class
而不是 ytpl-thumbs
的 id
并为每个玩家使用唯一的 id
:
HTML
<div class="sidebar">
<h1>Playlist (1): Birds</h1>
<div class="container">
<div class="ypt_wrapper">
<div class="video embed-container">
<div id="ytpl-player1" data-pl="PLBhKKjnUR0XB8DwQwXqBsChb48E8jzfr-">
</div>
</div>
<div>
<h2 class="ytpl-title"></h2>
<div class="ytpl-desc"></div>
</div>
<div class="ytpl-flexslider">
<ul class="ytpl--thumbs slides"></ul>
</div>
</div>
</div>
</div>
<div class="sidebar">
<h1>Playlist (2): Owls</h1>
<div class="container">
<div class="ypt_wrapper">
<div class="video embed-container">
<div id="ytpl-player2" data-pl="PLBhKKjnUR0XAM2Wvi7JY5gLRpFLzIE-An">
</div>
</div>
<div>
<h2 class="ytpl-title"></h2>
<div class="ytpl-desc"></div>
</div>
<div class="ytpl-flexslider">
<ul class="ytpl--thumbs slides"></ul>
</div>
</div>
</div>
</div>
<div class="sidebar">
<h1>Playlist (3): Misc. Animals</h1>
<div class="container">
<div class="ypt_wrapper">
<div class="video embed-container">
<div id="ytpl-player3" data-pl="PLBhKKjnUR0XCGuLxsESq7WMlIwZIH9tIi">
</div>
</div>
<div>
<h2 class="ytpl-title"></h2>
<div class="ytpl-desc"></div>
</div>
<div class="ytpl-flexslider">
<ul class="ytpl--thumbs slides"></ul>
</div>
</div>
</div>
</div>
Javascript
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/player_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
var players = new Array();
var players_list = ["ytpl-player1", "ytpl-player2", "ytpl-player3"];
var nowPlaying = "ytpl-playing";
var nowPlayingClass = "." + nowPlaying;
function getPlaylistData(playerName) {
var apiKey = 'AIzaSyDI4rWo_wVAxRZEIgF6_8sRZDj8OCOZZ38';
var url = 'https://www.googleapis.com/youtube/v3/playlistItems?part=snippet';
var data = {
'playlistId': $('#' + playerName).data('pl'),
'key': apiKey,
'maxResults': 4
};
$.get(url, data, function(e) {
buildHTML(playerName, e.items)
})
}
function buildHTML(playerName, data) {
var list_data = '';
data.forEach(function(e, i) {
var item = e.snippet;
if (item.thumbnails) {
list_data += '<li><button data-ytpl-index="' + i + '" data-ytpl-title="' + item.title + '" data-ytpl-desc="' + item.description + '"><p>' + item.title + '</p><img alt="' + item.title + '" src="' + item.thumbnails.medium.url + '"/></button></li>';
}
});
$('#' + playerName).closest('.ypt_wrapper').find('.ytpl--thumbs').html(list_data);
}
// generate playlist items once main player has loaded
function onPlayerReady(event) {
getPlaylistData(event.target.name);
}
function onYouTubeIframeAPIReady() {
for (item in players_list) {
players[players_list[item]] = new YT.Player(players_list[item], {
height: '360',
width: '640',
playerVars: {
listType: 'playlist',
list: $('#' + players_list[item]).data('pl')
},
events: {
'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
players[players_list[item]].name = players_list[item];
}
}
function updateTitles($this) {
$('#ytpl-title').text($this.data('ytpl-title'))
$('#ytpl-desc').text($this.data('ytpl-desc'))
}
function onPlayerStateChange(event) {
var $buttons = $('#' + event.target.name).closest('.ypt_wrapper').find('.ytpl--thumbs').find('button');
var currentIndex = event.target.getPlaylistIndex();
// remove existing active class, add to currently playing
if (event.data === YT.PlayerState.PLAYING) {
$buttons.removeClass(nowPlaying);
$buttons.eq(currentIndex).addClass(nowPlaying);
}
// if last video has finished playing
if (event.data === YT.PlayerState.ENDED && currentIndex === $buttons.length - 1) {
$buttons.removeClass(nowPlaying);
}
updateTitles($buttons.eq(currentIndex))
}
// handle playlist button click
$(document).on('click', '[data-ytpl-index]:not(".ytpl-playing")', function(e) {
e.preventDefault();
var $this = $(this);
var index = $this.data('ytpl-index');
var playerName = $(this).closest('.ypt_wrapper').find('iframe').attr('id');
updateTitles($this);
if (navigator.userAgent.match(/(iPad|iPhone|iPod)/g)) {
players[playerName].cuePlaylist({
listType: 'playlist',
list: $('#' + players_list[playerName]).data('pl'),
index: index,
suggestedQuality: 'hd720'
});
} else {
players[playerName].playVideoAt(index); //Play the new video, does not work for IOS 7
}
});
关于javascript - YouTube 播放列表在单个页面上嵌入多个播放列表的脚本 (jQuery/CSS/HTML + CodePen),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46612091/
是否可以将 CodePen 中的笔嵌入到没有默认框架/导航栏的网站中?换句话说,是否有可能摆脱笔顶部和底部的横条?谢谢! 最佳答案 您可以像这样在嵌入式代码片段上设置数据属性来实现 - data-sh
当我在 IE 10 或 11 的 codepan 中打开它时,这段代码有效,但当我尝试在 jsfiddle 或 IE 10 或 11 的任何地方执行相同操作时,它不起作用。我已经尝试过复制/粘贴和导出
因此,每当您在 Codepen 上创建笔时,它都会为您的笔分配一个屏幕截图,作为缩略图在您的仪表板中代表该笔。 但我面临的问题是,当我更新笔(或更改其外观)时,与笔关联的缩略图也应该更新,但情况并
我将此复选框设计得看起来像一个开关。我想在其中添加“ON”和“OFF”一词。这就是我遇到的麻烦。 这是代码笔:http://codepen.io/anon/pen/BKMErO CSS: .switc
我正在尝试控制台记录一个应该包含数组的变量。但是,在 Codepen 中,它返回一个空数组。我期待它返回列表项的内容。 这是 Codepen连同一些代码片段: 顺便说一句,这是一个 React 项目,
我有这支笔:https://codepen.io/dteiml/full/PNMwZo使用以下 JavaScript 代码: $('#getWeather').on('click', function
我正常使用 codepen,我正在将 imgur 图片链接到 imgur 或 GoogleDrive,它们都可以工作,但一段时间后它们不再出现,这可能是什么?已配置为公开访问。 最佳答案 来自 im
我在 Codepen 上有这段代码: body { width: 100px; height: 100px; background-color: #eee; background-im
我正在尝试用 html 和 css 做我的第一个元素,但遇到了一些麻烦。我正在练习使用 codepen,我的画廊进展顺利,但我正在尝试添加最后一行图像,它似乎把一切都搞砸了,我不知道为什么。有人介意看
我刚刚偶然发现了一个代码笔 demo .然后代码在 codepen 窗口中工作正常。当我将它复制到本地 HTML 文件时,它停止工作了。这是所有组合在一个 .html 文件中的代码 body
我有一个代码字体图标动画 我的问题是当我在本地服务器动画中运行时它不起作用 它只在 http://codepen.io/TimPietrusky/pen/ELuiG 中起作用 甚至尝试过 http:/
我正在尝试将图像和声音文件链接到我的 Code pen link使用下拉框共享链接。
我尝试将 CodePen(来自 codepen.io)添加到我的网页,但它没有按照我想要的方式显示。它只显示文本:'See the Pen ... on CodePen'。 The picture I
我正在尝试在同一个容器中制作 8 张产品卡片,我正在按照以下示例进行操作: https://codepen.io/virgilpana/pen/RNYQwB 但是当我尝试添加第二张、第三张等卡片时,动
尝试在我的笔中使用样式组件 https://codepen.io/mxshrv/pen/aMXvQd , 但出现错误 Cannot use 'in' operator to search for 'd
我正在阅读ReadmoreJS我很高兴能在 CodePen 上尝试一下。然而,当我阅读网站上的说明并在CodePen上实现一些代码时,它根本不起作用。这是我的CodePen的链接查看代码。在 JS 选
这是一个工作的 CodePen,当我将整个代码导出到本地 JS HTML 和 CSS 文件时,它不起作用...... https://codepen.io/pixy-dixy/pen/mYxLpR 我
很抱歉问了这个愚蠢的问题,但我想知道如何使这个 javascript 成为我网站的背景。对于 JavaScript 来说相对较新,我不太确定如何将其实现为背景。 代码笔链接: '''https://c
我只是想将自定义文本放在倒计时圆圈的中心,但我不知道如何替换当前位于中心的数字和文本。 Codepen 链接: http://codepen.io/anon/pen/zqjdRg 示例代码:
我正在使用 jQuery 并使用 JSON 在 Codepen.io 中制作一个简单的项目。 我想从对象数组中选择一个随机索引,为此我使用 getRandomArbritary 函数。 但是,在 co
我是一名优秀的程序员,十分优秀!