Mobile browser page Click do not jump browser double-click zoom in Webpage solution, jump zoom in
Mobile web page project
1. angluar js 1.4.6
During webpage project development, the PC browser can be used for normal access, and the IOS device browser can also be used for normal access. However, when some Android browsers are used for access, links occasionally do not jump, there is no response after clicking (I use angluar js route to jump to a single page application). At this time, the path in the address bar has been updated to the address after clicking, double-click the page to enlarge the page (The problem is found following this phenomenon)
By default, browsers on mobile phones, tablets, and other mobile devices have double-click amplification settings. How can I avoid double-click amplification?
Solution:
You can add meta to the page header.
<Meta name = "viewport" content = "width = device-width, minimum-scale = 1.0, maximum-scale = 1.0, user-scalable = no"/>
Final Problem Solving