Currently, I have a line of text whose default font size is 24. I change this to resize to 22:
$(document).ready(function animateHeader() {
$('#random_header').animate({fontSize : "22px"}, 500);
});
I want to cycle this animation back and forth from 24 to 22 and from 22 to 24. How can I do this?
source
share