Mobile web--self-adapting web design

Source: Internet
Author: User

I. Allow Web page width Auto-adjust: How does "adaptive Web Design" work? It's not that hard actually. First, in the header of the page code, add a row of viewport meta tags. <meta name= "viewport" content= "Width=device-width, initial-scale=1"/>viewport is the Web page default width and height, the above line of code means that The Web page width defaults to the screen width (width=device-width), and the original scale (initial-scale=1) is 1.0, which means that the initial size of the page occupies 100% of the screen area. For the viewport attribute, I was really in touch with mobile Web development is only encountered, a piece of PS layout is fixed 960px,1000px this. The following three articles are detailed explanations of the Viewport attribute: Viewport (viewport concept)--pc-side understanding Viewport (viewport concept)--application of the mobile end viewport--viewport concept (RPM) for old-fashioned ie6,7,8 browsers, JS processing is required, Since the main platform is iOS and Android, all can be temporarily not considered two. Do not use absolute width because the page adjusts the layout based on the screen width, you cannot use an absolute width layout, and you cannot use an element with an absolute width. This is a very important article. Specifically, the CSS code can not specify the pixel width: width:xxx px; only percent width can be specified: width:xx%; Or: Width:auto; Here the development refers to a Web page can not only be used in PS, but also for the mobile side, but for WebApp this still need to do a separate webapp use of the page. For this point of knowledge, for my current project is useful, mainly for the control of the database to read the width of the image. See: Mobile WebApp's jquery mobile first use experience and solve image adaptive size problem three.  The relative size of the font font also cannot use absolute size (px), but only relative size (EM).  Body {font:normal 100% Helvetica, Arial, Sans-serif;  The code above specifies that the font size is 100% of the default size of the page, which is 16 pixels.   h1 {font-size:1.5em;  Then, the size of the H1 is 1.5 times times the default size, which is 24 pixels (24/16=1.5).  small {font-size:0.875em; The size of the}small element is 0.875 times times the default size, which is 14 pixels (14/16=0.875). Four. FlowDynamic layout (fluid grid) The meaning of the "flow layout" is that the positions of each chunk are floating, not fixed: main {float:right;   width:70%;    }. leftbar {float:left;  width:25%; The advantage of}float is that if the width is too small to fit two elements, the following elements will automatically scroll to the bottom of the preceding element without overflow (overflow) horizontally, avoiding the appearance of the horizontal scroll bar. In addition, the use of absolute positioning (Position:absolute) should also be very careful. Five. The core of "adaptive web Design" is the media query module introduced by CSS3.  It means that the screen width is automatically detected and then the corresponding CSS file is loaded. <link rel= "stylesheet" type= "text/css" media= "screen and (max-device-width:400px)" href= "Tinyscreen.css"/> Above  The code means that if the screen width is less than 400 pixels (max-device-width:400px), the Tinyscreen.css file is loaded. <link rel= "stylesheet" type= "text/css" media= "screen and (min-width:400px) and (max-device-width:600px)" href= " Smallscreen.css "/> If the screen width is between 400 pixels to 600 pixels, the Smallscreen.css file is loaded.  In addition to loading CSS files with HTML tags, you can also load them in an existing CSS file. @import url ("tinyscreen.css") screen and (max-device-width:400px); six. CSS @media rules in the same CSS file, or depending on the display resolution,  Choose to apply different CSS rules.      @media screen and (max-device-width:400px) {. column {float:none;    Width:auto;    } #sidebar {display:none; }} The code above means, if the screen width is less than 400 pixels, the column block is de-floating (float:none), Width auto-adjusting (Width:auto), and the sidebar block is not displayed (Display:none). Seven. Image adaptation (fluid image) In addition to layout and text, adaptive web design must also implement automatic scaling of images. This is just one line of CSS code: img {max-width:100%;} This line of code is also valid for most video embedded pages, so it can be written as: IMG, object {max-width:100%;} The old version of IE does not support max-width, so it had to be written: img {width:100%;} Additionally, image distortion may occur when the Windows platform scales pictures. At this point, you can try to use IE's proprietary command: IMG {-ms-interpolation-mode:bicubic;}  Or, Ethan Marcotte's imgsizer.js.    Addloadevent (function () {var IMGs = document.getElementById ("content"). getElementsByTagName ("img");  Imgsizer.collate (IMGs); }); However, it is best to load images of different resolutions depending on the size of the screen. There are many ways to do this, both server side and client can implement.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.