jqTouch - 为什么过渡没有动画?
我正在使用jqTouch。试图找出为什么当场景/div 改变时,它只是突然改变而没有幻灯片动画?
这是我现在的设置:
var jQT = 新 $.jQTouch({ 幻灯片选择器:'.link', 使用动画:true });
同样,场景更改效果很好,只是我看不到幻灯片动画。
我缺少什么?
谢谢,
球座
I'm using jqTouch. Trying to figure out why when the scene / div change, it just change abruptly without the slide animation?
Here is the setting that I have now:
var jQT = new $.jQTouch({
slideSelector: '.link',
useAnimations: true
});
Again the scene change works just fine, just that I don't see the slide animation.
What am I missing?
Thanks,
Tee
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找出原因了。
SlideSelector 需要应用于 标签。
球座
Found out why.
The slideSelector needs to be applied to <a> tag.
Tee