我制作了一个从 xml 文件中提取信息的播放列表。通过单击超链接调用视频。我正在尝试添加颜色框,我已经得到了这个框,但我一生都无法弄清楚如何让视频打开到颜色框中。这是我使用的代码:
$(function() {
/* be sure data is defined here */
$( data ).find("chapter").each(function() {
var $chapter = $('<li class="chaptertitle"/>')
.append('<img class="img-swap" src="http://sandbox.kalliance.com/demo/images/plus.png" class="img-swap" />')
.append('<p align="left" class="pc-left">' + $(this).attr("label") + '<p align="right" class="pc-right">Duration</p>')
.append('<ul/>')
.appendTo( '#screens' );
$(this).find('screen').each(function() {
time=$(this).find('screen').attr('duration')
$("#screens").append(time)
$('#screens ul:last')
.append('<li class="screentitle"/>')
.find('li:last')
.append('<p align="left" class="p-left"><a href="'+streamer+''+filenum+'/streams/_definst_/' + $(this).attr('path') + '" id="colorbox-load">' + $(this).attr('label') + ' </a></p> <p align="right" class="p-right">'+ $(this).attr("duration")+'</p>');
//tgonzalez - create the modal window for the video
$("#colorbox-load").click(function() {
$.colorbox({inline:true, width:960, height:540, opacity:0.8 });