使用 Galleriffic 2.0 建立动画队列
我试图弄清楚如何使用 stop() 函数来停止 Galleriffic 发生的动画构建。当您快速且重复地将鼠标悬停在缩略图上时,就会发生这种情况。我知道在一个简单的 jquery 脚本中,您可以将 stop() 函数与 animate 函数一起使用,但是 galleriffic 使用了太多代码,我不确定在哪里以及如何应用它。
顺便说一句,我是 jquery 新手。使用 jQuery 1.4.4 和 Galleriffic 2.0,并一直在研究 Galleriffic 下载中包含的示例。
I'm trying to figure out how to use the stop() function to stop the animation buildup that occurs with Galleriffic. It happens when you mouse over the thumbnail images quickly and repetitively. I know in a simple jquery script you'd use the stop() function with the animate function, but galleriffic uses so much code I'm not exactly sure where and how to apply it.
I'm new to jquery btw. Using jQuery 1.4.4 and Galleriffic 2.0, and have been working off the examples included with the Galleriffic download.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,终于想通了。事实证明,当鼠标悬停在缩略图上时透明度逐渐消失是由名为“jquery.opacityrollover.js”的脚本处理的。
透明度不是使用 jquery“animate”函数进行动画处理,而是使用“fadeTo”函数进行动画处理。代码如下所示:
所以我通过试验和测试发现你所要做的就是更改
为
Okay, finally figured it out. Turns out that the transparency fading when mousing over the thumbnails is handled by a script called "jquery.opacityrollover.js".
The transparency is not animated with the jquery "animate" function, but is instead animated with the "fadeTo" function. The code looks like this:
So I figured out through trial and testing that all you have to do is change
to