Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用了一个在笔记本电脑和台式机上运行良好的滑块,但是当我在 iPad 中打开时,我们失去了平滑度并出现了一些杂乱,我想要与台式机相同的平滑效果。
请查看此链接中的代码
!!快速响应是可观的!
使用focus而不是click那将在 iPad 上工作
focus
click
哇,我只是改变了不同的风格,现在它的工作很完美
$(document).ready(function(){ $(".hide").click(function(){ $(".pane").slideToggle(slow); }); $("#togg a").click(function () { $("#togg a").toggle(); }); })