![]() |
|||||||||||||
|
|
|||||||||||||
jQuery(function($){
$("#ticker").tweet({
username: "fasotweets",
list: "faso-retweets",
page: 1,
avatar_size: 48,
count: 20,
loading_text: "laden ..."
}).bind("loaded", function() {
var ul = $(this).find(".tweet_list");
var ticker = function() {
setTimeout(function() {
ul.find('li:first').animate( {marginTop: '-20em'}, 2000, function() {
$(this).detach().appendTo(ul).removeAttr('style');
});
ticker();
}, 8000);
};
ticker();
});
});
|
|
||||||||||||
|
|
|||||||||||||