Better-scroll scrolling principle
<div class="wrapper"> <ul class="content"> <li>...</li> <li>...</li> ... </ul> <!-- You can put some other DOM here, but it will not affect the scrolling--> </div> So we will only talk about the most important point here! ! !
This is the biggest reason why all users are unable to scroll. I encountered this problem a few days ago, and the better-scroll document was inaccessible. The document on github was only roughly usable. I spent a whole day looking for a solution. Various methods emerged on the Internet. The best solution: Through plugin: better-scroll/observe-dom BetterScroll dynamically calculates the scrollable height or width. You don't need to manually call the refresh() method when the height or width changes. The plugin does this for you via MutationObserver . If your current browser does not support MutationObserver, it will be downgraded to use setTimeout. use
import BScroll from '@better-scroll/core' import ObserveDom from '@better-scroll/observe-dom' BScroll.use(ObserveDom) const bs = new BScroll('.wrapper', { observeDOM: true }) There are many solutions to this problem, but many articles on the Internet do not explain it clearly. Just use this plug-in. Another solution is to listen to the image loading and call refresh() to recalculate the height
This concludes this article about the better-scroll plug-in's inability to slide (solved in 2021 through plug-ins). For more related content about the better-scroll plug-in's inability to slide, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Solution to the error when importing MySQL big data in Navicat
>>: How to set up jar application startup on CentOS7
<br />I have been working in front-end for s...
Table of contents Declare fonts with font-face co...
Scenario: The interaction methods between parent ...
Cell -- the content of the table Cell margin (tabl...
Preface In the development of actual projects, we...
Table of contents 1. Page Layout 2. Image upload ...
Table of contents What is axios? Axios request ty...
Preface Creating shortcuts in Linux can open appl...
The questions encountered in Baidu interviews nee...
1. Download from the official website and unzip h...
Click here to return to the 123WORDPRESS.COM HTML ...
HTML validate refers to HTML validation. It is the...
What is pip pip is a Python package management to...
Table of contents Function Introduction function ...
I recently made a file system and found that ther...