How to make mobile web page content adaptive
This time I will show you how to make the web content on the mobile terminal adaptive. What are the precautions for adapting the web content on the mobile terminal? Here are practical cases, let’s take a look.
Finally finished the project at hand, the missing person is back! In the process of working on the project, I encountered many points worth thinking about, so let’s quickly explain them. The first problem encountered is the problem of web page size adaptation.
Currently the more commonly used methods are:
• First, let the page size fill the screen without overflowing. Just add viewport (as shown below) in the html
tag. The parameters respectively represent: page width = screen width. The maximum and minimum scaling ratios are both 1, and users are not allowed to zoom.<meta name="viewport" content="width=device-width,maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
• Percent adaptive: Convert the length unit to a percentage, so that the length and width of the element will change accordingly under different widths.
Advantages: Seamless connection between widths, and relatively easy to operate.
Disadvantages: The font size needs another set of adaptive methods to adjust; when the screen width is greater than 700px, the elements will be larger according to the percentage, which will be more troublesome to adjust at this time.
•rem, em adaptive: Use the media query method to determine the fontsize of or
under different screen widths. Then use rem and em instead of px as the unit to achieve adaptation.Advantages: It can be set according to different screen widths, which can perfectly solve the proportion problem when the screen is too large mentioned above. There is no problem with the font size either.
Disadvantages: Set according to the width interval, seamless transformation cannot be achieved.
-------------------------------------------------- ------------------------------------
These compatible methods each have their own advantages and disadvantages. None of them are 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 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 is to use JS to obtain the screen width, then reduce it according to a fixed ratio and use it as the unit length of rem to achieve self-adaptation.
Isn’t this a solution with all the advantages! ? Please allow me to get excited (☆_☆)
--------------------------------- --------------------------------------------------
JS code is very simple to write, and it perfectly solves the problem of being unable to achieve seamless connection when using rem settings.
But the problem arose after the mobile terminal test. The mobile terminal safari executed the JS with lightning speed before the HTML was loaded. The JS was read before the width of the page was set according to the viewport. The wrong width causes the element to become twice as big as 0^0. SetTimeout() needs to be used to solve the problem.
-------------------------------------------------- ------------------------------------
Final code
Zepto(function($){ var win = window, doc = document; function setFontSize() { var winWidth = $(window).width(); // 640宽度以上进行限制 var size = (winWidth / 640) * 100; doc.documentElement.style.fontSize = (size < 100 ? size : 100) + 'px' ; }; //防止在html未加载完毕时执行,保证获取正确的页宽 setTimeout(function(){ // 初始化 setFontSize(); }, 200); });
Finally, a pitfall discovered during the adaptive process of using rem - when the html is set to a larger fontsize, additional inline elements margin and padding will appear in the block element. value, the solution is to set the fontsize of the outer block element to 0.
I believe you have mastered the methods after reading these cases. For more exciting information, please pay attention to other related articles on the php Chinese website!
Related reading:
How to deal with content overflow in the table
How to obtain the dynamic remaining word count of textarea
htmlImportant knowledge points you must know about PHP
The above is the detailed content of How to make mobile web page content adaptive. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to send web pages to the desktop as a shortcut in Edge browser? Many of our users want to display frequently used web pages on the desktop as shortcuts for the convenience of directly opening access pages, but they don’t know how to do it. In response to this problem, the editor of this issue will share the solution with the majority of users. , let’s take a look at the content shared in today’s software tutorial. The shortcut method of sending web pages to the desktop in Edge browser: 1. Open the software and click the "..." button on the page. 2. Select "Install this site as an application" in "Application" from the drop-down menu option. 3. Finally, click it in the pop-up window

Especially over the past decade, mobile devices have become the primary way to share content with friends and family. The easy-to-access, easy-to-use interface and ability to capture images and videos in real time make it a great choice for creating and sharing content. However, it's easy for malicious users to abuse these tools to forward unwanted, sensitive content that may not be suitable for viewing and does not require your consent. To prevent this from happening, a new feature with "Sensitive Content Warning" was introduced in iOS17. Let's take a look at it and how to use it on your iPhone. What is the new Sensitive Content Warning and how does it work? As mentioned above, Sensitive Content Warning is a new privacy and security feature designed to help prevent users from viewing sensitive content, including iPhone

The browser cannot open the web page but the network is normal. There are many possible reasons. When this problem occurs, we need to investigate step by step to determine the specific cause and solve the problem. First, determine whether the webpage cannot be opened is limited to a specific browser or whether all browsers cannot open the webpage. If only one browser cannot open the web page, you can try to use other browsers, such as Google Chrome, Firefox, etc., for testing. If other browsers are able to open the page correctly, the problem is most likely with that specific browser, possibly

How to change the page that opens the Microsoft Edge browser to 360 navigation? It is actually very simple, so now I will share with you the method of changing the page that opens the Microsoft Edge browser to 360 navigation. Friends in need can take a look. I hope Can help everyone. Open the Microsoft Edge browser. We see a page like the one below. Click the three-dot icon in the upper right corner. Click "Settings." Click "On startup" in the left column of the settings page. Click on the three points shown in the picture in the right column (do not click "Open New Tab"), then click Edit and change the URL to "0" (or other meaningless numbers). Then click "Save". Next, select "

Some netizens found that when they opened the browser web page, the pictures on the web page could not be loaded for a long time. What happened? I checked that the network is normal, so where is the problem? The editor below will introduce to you six solutions to the problem that web page images cannot be loaded. Web page images cannot be loaded: 1. Internet speed problem The web page cannot display images. It may be because the computer's Internet speed is relatively slow and there are more softwares opened on the computer. And the images we access are relatively large, which may be due to loading timeout. As a result, the picture cannot be displayed. You can turn off the software that consumes more network speed. You can go to the task manager to check. 2. Too many visitors. If the webpage cannot display pictures, it may be because the webpages we visited were visited at the same time.

To set the automatic refresh of a web page, you can use the HTML "meta" tag, the JavaScript "setTimeout" function, the "setInterval" function or the HTTP "Refresh" header. Detailed introduction: 1. Use the "meta" tag of HTML. In the "<head>" tag of the HTML document, you can use the "meta" tag to set the automatic refresh of the web page; 2. The "setTimeout" function of JavaScript, etc.

How to solve the problem of web pages not opening With the rapid development of the Internet, people increasingly rely on the Internet to obtain information, communicate and entertain. However, sometimes we encounter the problem that the web page cannot be opened, which brings us a lot of trouble. This article will introduce you to some common methods to help solve the problem of web pages not opening. First, we need to determine why the web page cannot be opened. Possible reasons include network problems, server problems, browser settings problems, etc. Here are some solutions: Check network connection: First, we need

Executing PHP code in a web page requires ensuring that the web server supports PHP and is properly configured. PHP can be opened in three ways: * **Server environment:** Place the PHP file in the server root directory and access it through the browser. * **Integrated Development Environment: **Place PHP files in the specified web root directory and access them through the browser. * **Remote Server:** Access PHP files hosted on a remote server via the URL address provided by the server.
