i want to move text up (repeatdly) using javascript?
i want to move text up (repeatedly) using java-script ??
i want to move the last topics (for example) up (repeatedly) in Vertically开发者_开发问答 way ..
how could i do that???
Regards, Buffon
can't you just change the top value in css using a timeout? or do you want transitions?
setTimeout(function () {
$('#element').css({'top': '50px'});
},1000);
1000 = 1s
精彩评论