響應式佈局簡單程式碼例項

青衫無名發表於2018-03-01

本章節分享一段簡單的程式碼例項,它實現了簡單的響應式佈局的功能。

程式碼例項如下:

001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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">
body{
  font:1em/150% Arial, Helvetica, sans-serif;
}
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>

原文釋出時間為:2017-2-17

本文作者:admin

本文來自雲棲社群合作伙伴“螞蟻部落”,瞭解相關資訊可以關注螞蟻部落

原文連結:響應式佈局簡單程式碼例項


相關文章