• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

StageWebView bounce

Engaged ,
Jun 12, 2019 Jun 12, 2019

Copy link to clipboard

Copied

Has anyone found a resolution to this per chance?

I found a post that talks about how this can be resolved - but it's something Adobe would have to do:

Stop the Bouncy UIWebViews! – Logorrhea

This concerns the native bounce when dragging vertically often from the edges but can also affect divs that float above scrollable content within a StageWebView.

TOPICS
Air beta

Views

304

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Engaged , Jun 12, 2019 Jun 12, 2019

This was some simple CSS to resolve actually - the DIV that you want to be able to scroll - wrap in something like this:

<div style="position: fixed; height:100%; width:100%; top:0; left:0;">

The actual div that has the scrollable element:

<div  style="height:calc(100% - 1px); width:100%; margin-top: 0px; overflow-y: scroll; -webkit-overflow-scrolling: touch;"></div>

Votes

Translate

Translate
Engaged ,
Jun 12, 2019 Jun 12, 2019

Copy link to clipboard

Copied

LATEST

This was some simple CSS to resolve actually - the DIV that you want to be able to scroll - wrap in something like this:

<div style="position: fixed; height:100%; width:100%; top:0; left:0;">

The actual div that has the scrollable element:

<div  style="height:calc(100% - 1px); width:100%; margin-top: 0px; overflow-y: scroll; -webkit-overflow-scrolling: touch;"></div>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines