HTML5 Mobile Design Basics

HTML5 Mobile Design Basics

Desktop website design is mostly fixed layout or flow layout, while mobile websites should use fluid layout, which can adapt to different device sizes.

Building the HTML framework

  1. <!DOCTYPE html >  
  2. < html >  
  3. < head >  
  4. < meta   charset = "utf-8" />  
  5. < meta   name = "viewport"   content = "width=device-width,initial-scale=1.0, maximum-scale=1.0" />  
  6. < title > Mobile Design </ title >  
  7.  
  8. < link   rel = "stylesheet"   href = "css.css" />  
  9. </ head >  
  10. < body >  
  11. < header >  
  12. < h1 > Mobile Design and Development </ h1 >  
  13. </ header >  
  14. < div >  
  15. < ul >  
  16. < li > My name is Leo </ li >  
  17. < li > My website: http://forjs.org </ li >  
  18. < li > My QQ 1405491181 </ li >  
  19. < li > My WeChat ID: forjs_org </ li >  
  20. </ ul >  
  21. </ div >  
  22. < footer >  
  23. &copy; 2014 < a   href = "http://forjs.org" > forjs.org </ a >  
  24. </ footer >  
  25. </ body >  
  26. </ html >

Basic CSS

  1. html,body,ul,li,h 1 {
  2. margin : 0 ;
  3. padding : 0 ;
  4. }
  5.  
  6. body{
  7. padding : 5px ;
  8. }
  9.  
  10. ul{
  11. list-style : none ;
  12. }
  13.  
  14. li{
  15. border-radius: 5px ;
  16. background-color : #eee ;
  17. padding : 10px   5px   10px   5px ;
  18. margin : 5px   0 ;
  19. }

Basic Effects

Vertical effect

Horizontal effect

Add css media query support

  1. @media screen and ( min-width : 800px ){
  2. body{
  3. padding : 0 200px ;
  4. }
  5. }

Called when the device screen is larger than 800px.

<<:  WeChat Enterprise Accounts Dialogue with Enterprise Mobile Platform

>>:  How do technical founders choose non-technical partners?

Recommend

Ubuntu's first desktop-integrated phone is coming

[[151074]] As we all know, Canonical has been wor...

What is the difference between To B operations and To C operations?

From a purely conceptual point of view, the diffe...

Private domain traffic marketing promotion guide!

Some ideas on drainage channels and soft article ...

Have you paid attention to these "bullshit" things?

Whether at home, in the elevator, on the subway, ...

30 Taobao online store promotion methods that novices must read

For a novice opening a store, just waiting won’t ...

Xiaomi Mi 8 SE review: Perhaps the best value quasi-flagship

On May 31, Lei Jun walked onto the stage slowly w...

Foods containing aluminum: I won’t take the blame for Alzheimer’s disease!

Will eating foods containing aluminum cause Alzhe...