Instructions for using the meta viewport tag (mobile browsing zoom control)

Instructions for using the meta viewport tag (mobile browsing zoom control)

When OP opens a web page with the current firmware, it will always be zoomed out to 50% before displaying, and it does not support viewport settings like the iPhone.

When there is such a sentence in a web page, it will be displayed in the original size in the iPhone browser and will not allow scaling.
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>

in:
width - the width of the viewport
height - the height of the viewport
initial-scale - the initial scale
minimum-scale - the minimum scale the user is allowed to zoom to
maximum-scale - The maximum scale to which the user is allowed to zoom
user-scalable - whether the user can manually scale

Unfortunately, M8's OP does not support it, and I don't know how to set it so that the browser can open the web page at 100% size.

A quick Google search revealed that it is only supported by Opera Mobile 9.5. I wonder if the OP browser with the new firmware version 1.0 can support it.

<<:  Vue and react in detail

>>:  Common errors and solutions for connecting Navicat to virtual machine MySQL

Recommend

How to connect to MySQL visualization tool Navicat

After installing Navicat The following error may ...

Two methods to implement MySQL group counting and range aggregation

The first one: normal operation SELECT SUM(ddd) A...

MySQL 8.0.24 installation and configuration method graphic tutorial

This article shares the installation tutorial of ...

Several methods of deploying multiple front-end projects with nginx

I have summarized 3 methods to deploy multiple fr...

Basic tutorial on using explain statement in MySQL

Table of contents 1. Overview 1. Explain statemen...

Detailed explanation of data types in JavaScript basics

Table of contents 1. Data Type 1.1 Why do we need...

Simple Mysql backup BAT script sharing under Windows

Preface This article introduces a simple BAT scri...

CentOS method to modify the default ssh port number example

The default ssh port number of Linux servers is g...

Vue implements form validation function

This article mainly describes how to implement fo...

Detailed explanation of the text-fill-color property in CSS3

What does text-fill-color mean? Just from the lit...

Vue backend management system implementation of paging function example

This article mainly introduces the implementation...

How to operate the check box in HTML page

Checkboxes are very common on web pages. Whether ...

Introducing ECharts into the Vue project

Table of contents 1. Installation 2. Introduction...