ここで私はトランスクリプトを実行しています。これは現在の単語にもハイライトされています。トランスクリプトが上にスクロールし、テキストが表示されなくなると、ハイライトも表示されなくなるという問題があります。私がしたいのは、ハイライトがボックスの上部に到達したときに、上に消えることなくトップラインに表示されたままになることです。手伝ってくれますか???
function runTransript() {
//var player = _V_('video');
//var videoCurrentTime = player.currentTime();
var transcriptSpeed = 300; //videoCurrentTime;
transcriptSpeed *= $("#transcript .full-transcript").parent().height();
$("div").css({ top: $(this).parent().height() + 'px' });
$("div").animate({top: -$(this).height() }, transcriptSpeed, 'linear');
$(".transcript-text").each(function(index){
var curObj = $(this);
var interval = $(this).attr('time');
curObj.delay(interval).animate({color: '#5c9127'}, 100, function() {
$(this).prev().removeAttr("style").prev().removeAttr("style").prev().removeAttr("style");
});
});
}