Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Lessons Learned in Mobile Web App Development

Lessons Learned in Mobile Web App Development

Brandon Keepers

May 23, 2011
Tweet

More Decks by Brandon Keepers

Other Decks in Programming

Transcript

  1. Ordered List Brandon Keepers Grand Rapids Web Development Group May

    23, 2011 Lessons Learned in Mobile Web App Development
  2. ?

  3. header { position:fixed; top:0; right:0; left:0; height:56px; } .content {

    margin:56px 0 48px 0; } footer { position:fixed; bottom:0; right:0; left:0; height:56px; } fixed ader oter llable ntent
  4. header { position:fixed; top:0; right:0; left:0; height:56px; } .content {

    margin:56px 0 48px 0; } footer { position:fixed; bottom:0; right:0; left:0; height:56px; } fixed doesn’t w ork ader oter llable ntent
  5. header { position: absolute; top:0; right:0; left:0; height:56px; } .content

    { position: absolute; top:56px; bottom: 48px; right:0; left:0; overflow: auto; } footer { position: absolute; bottom:0; right:0; left:0; height:56px; } absolute ader oter llable ntent
  6. header { position: absolute; top:0; right:0; left:0; height:56px; } .content

    { position: absolute; top:56px; bottom: 48px; right:0; left:0; overflow: auto; } footer { position: absolute; bottom:0; right:0; left:0; height:56px; } absolute doesn’t w ork ader oter llable ntent
  7. $ find public/javascripts/ -type f | wc -l 70 $

    du -sh public/javascripts/ 916K public/javascripts/
  8. Lessons Learned mobile devices are slow-ish the browser can but

    the device can’t lack of consistency across Android devices