響應式佈局程式碼例項

admin發表於2019-05-10

所謂響應式佈局,就是可以根據媒體型別或者媒體各種屬性的不同自動調整顯示。

比如可以根據螢幕尺寸的不同,自動對頁面佈局進行重新調整。

關於媒體查詢的知識可以參閱CSS @media 媒體查詢一章節。

下面是一段簡單程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.softwhy.com/" /> 
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>螞蟻部落</title> 
<style type="text/css">
a{
  color:#669;
  text-decoration:none;
}
a:hover{
  text-decoration:underline;
}
h1{
  font:bold 36px/100% Arial, Helvetica, sans-serif;
}
#pagewrap{
  padding:5px;
  width:960px;
  margin:20px auto;
}
#header{
  height:180px;
}
#content{
  width:600px;
  float:left;
}
#sidebar{
  width:300px;
  float:right;
}
#footer{
  clear:both;
}
  
/* for 980px or less */
@media screen and (max-width:980px){
  #pagewrap{
    width:94%;
  }
  #content{
    width:65%;
  }
  #sidebar{
        width:30%;
  }
}
  
/* for 700px or less */
@media screen and (max-width: 700px){
  #content{
        width:auto;
        float:none;
  }
  #sidebar{
        width:auto;
        float:none;
  }
}
  
/* for 480px or less */
@media screen and (max-width: 480px){
  #header{
        height:auto;
  }
  h1{
        font-size: 24px;
  }
  #sidebar{
    display:none;
  }
}
  
/* border & guideline (you can ignore these) */
#content{
  background:#f8f8f8;
}
#sidebar{
  background:#f0efef;
}
#header, #content, #sidebar{
  margin-bottom:5px;
}
#pagewrap, #header, #content, #sidebar, #footer{
  border:solid 1px #ccc;
}
  
</style>
</head>
<body>
<div id="pagewrap">
  <div id="header">
    <h1>Header</h1>
  </div>
  <div id="content">
    <h2>Content</h2>
    <p>text</p>
    <p>text</p>
    <p>text</p>
    <p>text</p>
    <p>text</p>
    <p>text</p>
    <p>text</p>
    <p>text</p>
    <p>text</p>
    <p>text</p>
  </div>
  <div id="sidebar">
    <h3>Sidebar</h3>
    <p>text</p>
    <p>text</p>
  </div>
  <div id="footer">
    <h4>Footer</h4>
  </div>
</div>
</body>
</html>

大家可以自行調整頁面的大小,檢視上述程式碼的效果。

相關文章