First,I want to thank for the author of f7 framework.
I want to know how to turn off the bounces effect. We use the webpage made by f7 in the ios app webview. Our programmer can't use the native pull to refresh.
I hope you can help me,thanks.
Look at this solution http://www.idangero.us/framework7/forum/#!/bugs-and-issues:scrolling-is-not-fixed
Thank you. I tried the solution but did not work.
I just want to turn off the bounces effect of f7 ,which is diffierent to ios default effect. Because our programmer want to pull the web page to refresh it. But she can't trigger the touchmove event(perhaps it is the name) of ios.
I notice in IOS in the kitchen-sick case page only has one page does not have the effect of bounces of f7.
It's Navbars And Toolbars page

I don't know why, and how can I do.
Still not sure what you mean, but F7 doesn't use some special bounce effect, all you see is the default iOS behavior and not sure is it possible to disable it
Closing as no further response. Reopen issue if you still have this problem
This helps!
// Prevent bouncing
$$('body').touchmove(function(e) {
e.preventDefault();
});
@ghost +1 thanks
This works well with current Framework7 version to eliminate the bounce effect:
<script type="text/javascript" src="js/inobounce.min.js"></script>.views {
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
You can try:
html {
overflow: hidden;
}
Most helpful comment
This helps!