jQuery 中的效果
在 jQuery 中,当我们有多个效果时,效果必须同时进行或 先完成第一个效果,然后再进行下一个效果,我们该怎么做呢?
如果我使用 2 个效果,则看不到第一个效果,而会看到第二个效果。
这就是我正在尝试做的事情。我使用环形函数在图像上移动,当您单击任何一张图像时,我将使用 scrollTo()
方法滚动页面。
问题是没有看到迂回功能。只能看到滚动效果。
In jQuery, when we have more than one effect, such that the effect has to go simultaneously or
first complete the first effect and then proceed to next one, how do we do that?
If I use 2 effects, the first effect is not seen and the second one is seen.
Here is what I'm trying to do. I'm using a roundabout function move over the images, and when you click on any one of the images I am scrolling the page using the scrollTo()
method.
The problem is that the roundabout function is not seen. Only the scrolling effect is seen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑:我不确定这是否是您想要的。所以请尝试让我知道情况如何。
您可以使用 进行排队。并在完成第一个效果后调用该函数。如下所示,
DEMO 此处
Edit: I am not sure if this is what you want.. So Try and let me know how it goes.
You can queue using . and call the function after completing the first effect. Something like below,
DEMO here