这是我当前的代码。这会加载所有评论,并<p>
随着视频时间的推移显示评论。
样式newsticker
为方形,带边框。
我想在其中显示评论,然后滑入,然后滑出。就像这里http://spreadthesource.com/sandbox/featurify/
我怎样才能使它成为可能?
重点是通过媒体的 onPlay 刷新<p>
每一秒的内容。
所以加载的评论必须滑入,并在那里停留 5 秒钟,然后滑出消失。
我用 jsfiddle做了DEMO 。
任何人都可以向我展示代码。
Javascript
jQuery(document).ready(function () {
$('#video').on('timeupdate',function(e){
showComments(this.currentTime);
});
});
var comments = [{'time':'10','message':'hello! 10 secs has past'},{'time':'10','message':'hello! 10-2 secs has past'},{'time':'5','message':'hello! 5 secs has past'},{'time':'30','message':'hello! 30 secs has past'}];
function showComments(time){
var comments = findComments(time);
$.each(comments,function(i,comment){
$('p#newsticker').text(comment.message);
// Show for 5 seconds, then hide the `p` element.
$('p#newsticker').show().delay(2000).fadeOut();
});
}
function findComments(time){
return $.grep(comments, function(item){
return item.time == time.toFixed();
});
}
HTML
<body>
<div class="newsticker">
<p id="newsticker"></p>
</div>
<br />
<br />
<video id="video" controls="controls" autoplay="autoplay" name="media"><source src="http://media.w3.org/2010/05/sintel/trailer.mp4" type="video/mp4"></video>
</body>
CSS
div.newsticker{
border:1px solid #666666;
width:400px;
height:50px;
}