jquery - scrolling down box with most recent feeds -
i've taken @ these 3 websites:
www.foursquare.com www.untappd.com www.getglue.com
as can see main page has scrolling down recent activity box. how create this?
is jquery or what?
its done javascript, can use jquery make easier on yourself. heres quick example
$(function(){ setinterval(function(){ $("#wrapper").prepend($("<li>a new item</li>").hide().fadein()); }, 4000); });
you use timeout, or interval, coupled ajax request, polls database , returns new results etc. basic concept appending new items dom tree.
Comments
Post a Comment