Home >Web Front-end >H5 Tutorial >The magical effect of mobile html5 meta tag_html5 tutorial skills

The magical effect of mobile html5 meta tag_html5 tutorial skills

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 15:46:141904browse

When making a mobile website, in addition to the simplicity of the page and easy operation, etc., which visitors can see, it is the setting of Meta tags. Properly setting Meta tags will improve the search engine optimization of the mobile website and the rendering of mobile browsers. Displays are very helpful. Everyone is very familiar with the meta tag in the web layout of the desktop platform. It is always located inside the head element. Friends who do SEO must have a special feeling for meta. Today we will talk about the meta tag of the mobile platform. What are the magical effects of meta tags on mobile platforms?
1. Viewport of Meta
When it comes to mobile platform meta tags, we have to talk about viewport. So what is viewport?
Viewport is the visual area. For desktop browsers, viewport refers to the area used to view web pages after removing all toolbars, status bars, scroll bars, etc.
. For traditional WEB pages, it is normal for the width of 980 to be displayed on the iPhone, and it also fills the screen. But for webapps, it may be a bit of a problem. On iPhones, our webapps usually have a width of 100cm in portrait mode. 320, what effect will our 320 page display on the iPhone? Some people may think that the iPhone is not 320mm wide, it should fill the screen, right? What is the reality? Let’s take a look at how the following layout appears on the iPhone

Copy the code
The code is as follows:





Meta Viewport> ;




AppUE




So we have to change the viewport , we have the following attribute values ​​​​that can be set:
width: the width of the viewport (ranging from 200 to 10,000, the default is 980 pixels)
height: the height of the viewport (ranging from 223 to 10,000)
initial-scale: initial scaling (ranging from >0 to 10)
minimum-scale: the minimum scale the user is allowed to zoom to
maximum-scale: the maximum scale the user is allowed to zoom to
user-scalable: Whether the user can manually zoom
For these attributes, we can set one or more of them. You do not need to set them all at the same time. The iPhone will automatically calculate other attribute values ​​​​based on the attributes you set, instead of Just use the default value.
If you set initial-scale=1, then width and height will automatically be 320*356 in portrait mode (not 320*480 because the address bar etc. all occupy space), and 480*208 in landscape mode. Similarly, if you only set width, initial-scale and height will be automatically calculated. For example, if you set width=320, the initial-scale is 1 when the screen is in portrait mode, and becomes 1.5 when the screen is in landscape orientation. So how do these settings let Safari know? In fact, it is very simple, just a meta, in the form:

Copy the code
The code is as follows:


Okay, we can lay out our page in full screen, no longer need to worry about the page being displayed very small!
2. Meta format-detection

Copy code
The code is as follows:


You clearly wrote a string of numbers without adding a link style, but the iPhone will automatically add a link style to your text, and clicking on the number will automatically dial the number! How to remove this dial-up link? At this time, our meta should show its magic again. The code is as follows:
telephone=no prohibits converting numbers into dial-up links!
telephone=yes enables the conversion of numbers into dial-up links. To enable the conversion function, there is no need to write this meta. It is enabled by default!

3. Meta of apple-mobile-web-app-capable

The function of this meta is to delete the default Apple toolbar and menu bar. content has two values ​​"yes" and "no". When we need to display the toolbar and menu bar, there is no need to add this line of meta. The default is to display it.
4. Meta of apple-mobile-web-app-status-bar-style

Copy the code
The code is as follows:



The function is to control the status bar display style

Copy the code
The code is as follows:

status-bar-style:black
status-bar-style:black-translucent

Today I will briefly talk about which Meta tags need to be added to the mobile version of the website:
viewport
viewport is almost a recognized standard. It was originally created by Apple for the mobile version of Safari on the iPhone. Due to the Big seller, accepted by most other mobile browsers, such as Opera Mobile, iPhone, Android, Iris, IE, BlackBerry, Obigo, Firefox
The most basic example, making the site full screen width on mobile:

Copy code
The code is as follows:


HandheldFriendly
This label and MobileOptimized introduced below are de facto labels in the feature machine era. The
HandheldFriendly tag was first used to mark mobile content in AvantGo browsing, and later became a universal standard for marking mobile sites, but the support of this tag is unknown.

Copy code
The code is as follows:


MobileOptimized
This is a Windows-specific meta tag that eventually became another method for identifying mobile content, but the disadvantage of this tag is that it is The width must be given, and again, the support of this tag is unknown:

Copy the code
The code is as follows:


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn