我设计了一个页面,页面中有四个div标签.如果我在手机测试页面(5英寸),它完美匹配页面,如果我在平板电脑上测试同一页面,页面适合屏幕的30%.那么我如何设置div尺寸,以便适合所有类型的屏幕.
HTML:
- <div class="bubble0" align="center">
- <h3>Three Levels </h3>
- </div>
- <div class="bubble" align="center"> </div><br/><br/>
- <div class="bubble1" align="center"> </div><br/><br/>
- <div class="bubble2" align="center"> </div><br/><br/>
- <button>Play</button>
任何建议请,
解决方法
这叫做
Responsive Web Development(RWD).
为了使页面响应所有设备,我们需要使用一些基本的基础,如:
为了使页面响应所有设备,我们需要使用一些基本的基础,如:
1.将headport元标签设置在head中:
- <Meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0"/>
2.使用media queries.
例:-
- /* Smartphones (portrait and landscape) ----------- */
- @media only screen
- and (min-device-width : 320px)
- and (max-device-width : 480px) {
- /* Styles */
- }
- /* Smartphones (landscape) ----------- */
- @media only screen
- and (min-width : 321px) {
- /* Styles */
- }
- /* Smartphones (portrait) ----------- */
- @media only screen
- and (max-width : 320px) {
- /* Styles */
- }
- /* iPads (portrait and landscape) ----------- */
- @media only screen
- and (min-device-width : 768px)
- and (max-device-width : 1024px) {
- /* Styles */
- }
- /* iPads (landscape) ----------- */
- @media only screen
- and (min-device-width : 768px)
- and (max-device-width : 1024px)
- and (orientation : landscape) {
- /* Styles */
- }
- /* iPads (portrait) ----------- */
- @media only screen
- and (min-device-width : 768px)
- and (max-device-width : 1024px)
- and (orientation : portrait) {
- /* Styles */
- }
- /* Desktops and laptops ----------- */
- @media only screen
- and (min-width : 1224px) {
- /* Styles */
- }
- /* Large screens ----------- */
- @media only screen
- and (min-width : 1824px) {
- /* Styles */
- }
- /* iPhone 4 ----------- */
- @media
- only screen and (-webkit-min-device-pixel-ratio : 1.5),only screen and (min-device-pixel-ratio : 1.5) {
- /* Styles */
- }
或者我们可以直接使用RWD framework:
> Bootstrap
> Foundation 3 etc.
一些好文章
Media Queries for Standard Devices – BY CHRIS COYIER
更大的设备,中型设备&小型设备媒体查询. (在我的场景中工作)
以下媒体查询通用设备类型: – 较大的设备,中型设备&小型设备.
这只是基本的媒体类型,适用于所有的场景&容易处理代码而不是使用各种媒体查询只需要关心三种媒体类型.
- /*###Desktops,big landscape tablets and laptops(Large,Extra large)####*/
- @media screen and (min-width: 1024px){
- /*Style*/
- }
- /*###Tablet(medium)###*/
- @media screen and (min-width : 768px) and (max-width : 1023px){
- /*Style*/
- }
- /*### Smartphones (portrait and landscape)(small)### */
- @media screen and (min-width : 0px) and (max-width : 767px){
- /*Style*/
- }