How to implement mobile web page size adaptation

How to implement mobile web page size adaptation

I finally finished the project at hand, and the missing people are back! In the process of doing the project, I encountered many points worth thinking about, which I will talk about quickly. The first problem encountered is the problem of web page size adaptation.

The more commonly used methods are:

• First, the page size should fill the screen without overflowing. Just add viewport in the html <head> tag (as shown below). The parameters represent: page width = screen width, the maximum and minimum scaling ratios are both 1, and users are not allowed to zoom in or out.

XML/HTML CodeCopy content to clipboard
  1. < meta   name = "viewport"   content = "width=device-width,maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" >   

• Percentage adaptation: Convert the length unit into a percentage so that the length and width of the element will change at different widths.

Advantages: Seamless connection between widths, and relatively convenient operation.

Disadvantages: The font size requires another set of adaptive methods to adjust; when the screen width is greater than 700px, the elements will be too large if they continue to be based on percentages, which makes adjustment more difficult.

•Rem and em adaptive: Use media query method to determine the fontsize of <html> or <body> under different screen widths. Then use rem and em instead of px as units to achieve adaptivity.

Advantages: It can be set according to different screen widths, which can perfectly solve the proportion problem mentioned above when the screen is too large. The font size is not a problem either.

Disadvantages: It is set according to the width range and cannot achieve seamless transformation.

--------------------------------------------------------------------------------

These compatibility methods each have their own advantages and disadvantages, and none of them is perfect. How can we combine the advantages while avoiding the disadvantages?

When referring to Taobao's adaptive method, I accidentally discovered that the fontsize of the page <html> will be automatically adjusted according to the width of the screen, and the quotient of the screen width and the set font size is certain.

So I guess it uses JS to get the screen width, shrinks it according to a fixed ratio, and uses it as the unit length of rem to achieve adaptation.

Isn’t this a solution with all the advantages? ? Please allow me to get excited for a moment (☆_☆)

--------------------------------------------------------------------------------

The JS code is very simple to write, and it perfectly solves the problem of not being able to achieve seamless connection using rem settings.

But problems arose after testing on the mobile side. Safari on the mobile side executed the JS at lightning speed before the HTML was loaded. Before the page had set the width according to the viewport, JS read the wrong width, causing the element to become twice as large as before 0^0. setTimeout() was needed to solve the problem.

--------------------------------------------------------------------------------

Final code

JavaScript CodeCopy content to clipboard
  1. Zepto( function ($){
  2.      var win = window,
  3. doc = document;
  4.   
  5.      function setFontSize() {
  6.          var winWidth = $(window).width();
  7.          // Limit the width above 640   
  8.          var size = (winWidth / 640) * 100;
  9. doc.documentElement.style.fontSize = (size < 100 ? size : 100) + 'px' ;
  10. };
  11.        
  12.      //Prevent execution when HTML is not fully loaded to ensure the correct page width   
  13. setTimeout( function () {
  14.          // Initialization   
  15. setFontSize();
  16.            
  17. }, 200);
  18.     
  19. });

Finally, I would like to add a pitfall I discovered when using rem for adaptation - when the HTML sets a larger fontsize, the margin and padding of the inline elements within the block element will have additional values. The solution is to set the fontsize of the outer block element to 0.

The above method of implementing adaptive mobile web page size is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/daisykoo/archive/2016/05/24/5522958.html

<<:  The difference between Display, Visibility, Opacity, rgba and z-index: -1 in CSS

>>:  Detailed explanation of Vue save automatic formatting line break

Recommend

Summary of considerations for writing web front-end code

1. It is best to add a sentence like this before t...

How to create a trigger in MySQL

This article example shares the specific code for...

HTML simple web form creation example introduction

<input> is used to collect user information ...

Deploy Nginx+Flask+Mongo application using Docker

Nginx is used as the server, Mongo is used as the...

svg+css or js to create tick animation effect

Previously, my boss asked me to make a program th...

Solve the problem of Tomcat10 Catalina log garbled characters

Running environment, Idea2020 version, Tomcat10, ...

Sharing several methods to disable page caching

Today, when developing, I encountered a method wh...

Gitlab practical tutorial uses git config for related configuration operations

This article introduces the content related to gi...

Docker builds CMS on-demand system with player function

Table of contents text 1. Prepare the machine 2. ...

Bootstrap 3.0 study notes page layout

This time we will mainly learn about layout, whic...

A detailed introduction to the Linux directory structure

When you first start learning Linux, you first ne...

Detailed explanation of SELINUX working principle

1. Introduction The main value that SELinux bring...

Analysis of MySQL joint index function and usage examples

This article uses examples to illustrate the func...