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

A collection of advertising creation tips that took 8 years to compile

I also summarized 12 of my own advertising creati...

「User acquisition」The core of new product user growth

When it comes to growth, the first thing that com...

How to get likes on Tik Tok? Where to buy likes on Tik Tok at a cheap price

This article mainly introduces how to get likes o...

How to effectively avoid Apple’s capricious removal penalties?

Recently, CPs have frequently reported that the t...

Four situations where the phone cannot be turned on and solutions

In the era of mobile Internet, smartphones are ve...

2020 DaNei C/C++ Training

Introduction to 2020 Danai C/C++ training resourc...

Experience in optimizing game performance

[[149217]] Introduction to Optimization When it c...

7 Popular Educational Short Videos

The increase in short video followers mainly come...

How to make an offline event promotion and operation plan?

This article is not only suitable for online even...

Cool appearance suspected to be ZTE V5 new flagship product exposed

The new ZTE V5 has been exposed for some time. Pr...

How to promote your brand on TikTok? 5 Tips

According to InfluencerMarketingHub, TikTok has 5...

The first wave! 12 UI design tips that designers must pay attention to

Remember Michal Malewicz, the senior designer who...