Questions tagged «jqtouch»

1
如何在iOS上使用Phonegap正确检测方向变化?
我在下面找到此定向测试代码,以查找JQTouch参考资料。这可以在移动Safari上的iOS模拟器中正常运行,但在Phonegap中无法正确处理。我的项目遇到了与杀死该测试页相同的问题。有没有办法在Phonegap中使用JavaScript来感知方向变化? window.onorientationchange = function() { /*window.orientation returns a value that indicates whether iPhone is in portrait mode, landscape mode with the screen turned to the left, or landscape mode with the screen turned to the right. */ var orientation = window.orientation; switch (orientation) { case 0: /* If in portrait …


4
触摸设备上的jQuery UI滑块
我正在使用jQuery UI开发网站,并且在我的网站上有几个元素在触摸屏设备上查看时似乎不兼容;它们不会引起任何错误,但是行为不是应该的。 有问题的元素是jQuery UI定义的滑块和Ranges滑块;在触摸屏上,它只是将整个网页滑动到屏幕的一侧,而不是将触摸注册为抓起手柄,而将拖动注册为在整个滑块上拖动手柄。如果您点击手柄,然后点击滑块上您希望手柄结束的位置,它确实可以工作,但这非常慢且不理想。有任何想法吗? 我尝试下载jqtouch插件,然后附加.touch([...])到对slideler ()和rangelider()的所有调用,但这没有用。 谢谢! 更新:我在jQuery UI网站上找到了这个“补丁” http://bugs.jqueryui.com/ticket/4143 那说它有助于iPhone上的滑块,但现在又出现了一个愚蠢的问题:如何将这个“补丁”合并​​到我的代码中?我是否像插件一样将其包括在代码的开头?
95 slider  touch  jqtouch 

10
如何在Bootstrap中创建切换按钮
我最初使用HTML,CSS和JavaScript创建了一个Web应用程序,然后又被要求在Bootstrap中再次创建它。我做得很好,但是我在Web应用程序中将切换按钮改回了单选按钮(最初是复选框),而不是原来的切换按钮。 按钮的代码为: <label> Notifications <span class='toggle'> <input type='radio' class='notifications' name='notifications' id='notifications' /> </span> </li> <label> Preview <span class='toggle'> <input type='radio' class='preview' name='preview' id='preview' /> </span> </li> HTML页面链接到的JavaScript和CSS文件是: <script src = 'jqtouch.js'></script> <script src="jquery.js"></script> <script src="js/bootstrap.js"></script> <link href="css/bootstrap.css" rel="stylesheet"> <link href="css/bootstrap-responsive.css" rel="stylesheet"> 有没有办法更改代码,以便可以将切换按钮找回来?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.