使用手机浏览时如何下拉刷新整个页面ASP.NET MVC?
how to pull down to refresh entire page ASP.NET MVC when browsing with mobile?
我正在创建一个 ASP.NET MVC 应用程序,它要求用户在使用手机 phone 浏览网站时下拉刷新。我怎样才能做到这一点?不知道机器是怎么识别下拉到顶部并打算刷新的手势的,有什么建议吗?
有很多Pull-To-Refresh 插件,这里列出一些:
- https://github.com/apeatling/web-pull-to-refresh
- https://www.formget.com/jquery-pull-to-refresh-plugins/
但是,如果您更喜欢自己处理滑动检测而不使用插件,您可以通过将 touchstart
、touchend
、mouseup
、mousedown
事件放入帐户。此线程为您提供了很好的见解:
我正在创建一个 ASP.NET MVC 应用程序,它要求用户在使用手机 phone 浏览网站时下拉刷新。我怎样才能做到这一点?不知道机器是怎么识别下拉到顶部并打算刷新的手势的,有什么建议吗?
有很多Pull-To-Refresh 插件,这里列出一些:
- https://github.com/apeatling/web-pull-to-refresh
- https://www.formget.com/jquery-pull-to-refresh-plugins/
但是,如果您更喜欢自己处理滑动检测而不使用插件,您可以通过将 touchstart
、touchend
、mouseup
、mousedown
事件放入帐户。此线程为您提供了很好的见解: