菜鸟教程小白 发表于 2022-12-12 12:05:43

javascript - 从 html 页面内部滑动手势在 UIWebView 中不起作用


                                            <p><p>我有一个 UIWebView,它加载一个支持向左/向右滑动手势以在内容之间切换的 html 页面。此手势在从桌面浏览器打开页面时效果很好,但在从 UIWebView 加载时根本不起作用。</p>

<p><strong>jQuery 滑动</strong></p>

<p>适用于 IPHONE 和 IPOD TOUCH 移动应用程序</p>

<p><em>iPhone 和 iPod Touch 滑动手势支持使用 Safari JavaScript 实现 onTouchStart、onTouchMove、onTouchEnd 和 onTouchCancel。
这个插件使用 Mobile Safari 的内置触摸事件来允许 jQuery 将滑动事件绑定(bind)到任何 DOM 元素。当检测到手势时,您可以覆盖 swipeLeft 和 swipeRight 默认函数来创建自己的自定义进程。</em>
这是用于刷卡的插件:<a href="http://archive.plugins.jquery.com/project/swipe" rel="noreferrer noopener nofollow">http://archive.plugins.jquery.com/project/swipe</a> </p>

<p>还有其他人遇到过这个问题吗?
任何帮助将非常感激! </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>//左滑</p>

<pre><code>UISwipeGestureRecognizer * swipeleft=[initWithTarget:self action:@selector(swipeleft)];
                  swipeleft.direction=UISwipeGestureRecognizerDirectionLeft;
                  ;
</code></pre>

<p>//向右滑动</p>

<pre><code>UISwipeGestureRecognizer * swiperight=[initWithTarget:self action:@selector(swiperight)];
                  swiperight.direction=UISwipeGestureRecognizerDirectionRight;
                  ;
</code></pre>

<p>方法</p>

<pre><code>-(void)swipeleft{
}
-(void)swiperight{      
}
</code></pre>

<p>试试这个..</p></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - 从 html 页面内部滑动手势在 UIWebView 中不起作用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17424992/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17424992/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - 从 html 页面内部滑动手势在 UIWebView 中不起作用