我有一个修改过的 jPlayer,带有“正在播放的内容”信息栏。
信息栏显示来自 PHP 文件的回显信息。
我需要在该播放器栏上的信息上附加一个滚动条,但我似乎无法确定它。
滚动条位于单独的 js 文件中。
http://www.maxvergelli.com/jquery-scroller/
jQuery:
getCurrentTrack();
$('.now_playing').SetScroller({
velocity: 50,
direction: 'horizontal',
startfrom: 'right',
loop: 'infinite',
movetype: 'linear',
onmouseover: 'pause',
onmouseout: 'play',
onstartup: 'play',
cursor: 'pointer'
});
function getCurrentTrack() {
$('.now_playing').load('/player/readerPlayer2.php');
setInterval(function() {
$('.now_playing').load('/player/readerPlayer2.php');
}, 9000);
};
PHP信息:
<?php
header("Expires: Tue, 03 Jul 2040 06:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
$xml = simplexml_load_file("http://**.**.**.**:8000/live.xspf");
foreach ($xml->trackList->track as $data) {
$radio = $data->location;
$song = $data->title;
$info = $data->listeners;
}
echo '<div class="IceSong">'.$song.'</div>';
?>