0
我有一個<div>
與列表(ul,li)。jquery滾動文本與中間暫停
我想要一個jquery插件,在<div>
的中間幾秒鐘內從左側快速執行文本滾動並暫停。然後文本向右滾動並消失。
你有插件名嗎?
謝謝。
編輯: 在mrtsherman的幫助下,我成功地創建了腳本。 有解決方案:
$(document).ready(function() {
$('#affichage_titreSemaine > span').css('opacity', '0');
function TitresSemaine() {
// get the item that currently has the 'show' class
var current = $('#affichage_titreSemaine .show');
var next = current.next().length ? current.next() : $('#affichage_titreSemaine span :first');
// fade out the current item and remove the 'show' class
current.animate({opacity: "1.0", marginLeft: 465 - (current.width())/2}, 500, 'swing');
current.delay(2000).animate({opacity: "0.0", marginLeft: 930 - current.width()}, 500, 'swing', function(){
$(this).animate({marginLeft : 0}, 10, 'swing');
$(this).hide();
next.addClass("show");
next.show();
}).removeClass("show");
// repeat by calling the textloop method again after 3 seconds
setTimeout(TitresSemaine,4000);
}
TitresSemaine();
});
這是一個水平滾動列表?你能發表一個你想要的例子的鏈接,或者至少是你想要的東西嗎?你的描述很難被忽略。 – mrtsherman
我會盡力找到一個例子,在行動中,我看到了,但我忘了鏈接。 這是一個水平滾動,像html