Jquery – A logo fixed position is positioned relative to the browser window.

$(function() {
var offset = $(“#logo”).offset();
var topPadding = 15;
$(window).scroll(function() {
if ($(window).scrollTop() > offset.top) {
$(“#logo”).stop().animate({
marginTop: $(window).scrollTop() – offset.top + topPadding
});
} else {
$(“#logo”).stop().animate({
marginTop: 0
});
};
});
});

Android Resources

  • Android UI Utils
    Asset generators, device frames (for screenshots) and the design preview tool.
  • Android Niceties
    Design inspiration from some of the prettiest and most interesting apps.
  • Android Icons
    A nice pack of action bar icons styled for Ice Cream Sandwich.