IOS under the Vue Development front-end Project Click Return page to appear blank __ios

Source: Internet
Author: User

Original article Address

Problem Description:

Enter a page-->b page-->ios return--> screen appear--> manual Click Screen--> Problem Resolution


Reason Analysis:

When using WebView to develop Vue projects on iOS machines, Go history (-1) cannot pull the body's height off, making it obscure, triggering a light click, to eliminate the mask


Solution Implementation principle:

Html,body are 100%, #app撑起了父元素的告诉, but the browser default scrolling scroll is not #app, but the body, some factors, resulting in the return of history, can not be restored (iOS), for this reason, we will #app for absolute positioning, And make it a scroll object to solve the problem.

Implementation code:

[HTML]   View plain  copy html, body {     width:  100%;     height: 100%;     margin: 0;      padding: 0;     position: relative;  }   #app  {      width: 100%;     height: 100%;      background:  #fff;     overflow: scroll;     - webkit-overflow-scrolling: touch;     position: absolute;      left:0;     top:0;  }  

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.