jQuery 中的效果

发布于 2024-12-25 06:34:37 字数 221 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

很糊涂小朋友 2025-01-01 06:34:37

编辑:我不确定这是否是您想要的。所以请尝试让我知道情况如何。

$(function(){ 
        $('ul').roundabout(function() { 
            $('img').click(function(){ 
                $('#outermost').scrollTo($(this).attr('id'),800); 
                return false; 
            }); 
        });
}); 

您可以使用 进行排队。并在完成第一个效果后调用该函数。如下所示,

$("div").click(function () {
  $(this).hide("slide", { direction: "down" }, 1000)
      .show("slide", {direction: "down"}, 1000);
 });

DEMO 此处

Edit: I am not sure if this is what you want.. So Try and let me know how it goes.

$(function(){ 
        $('ul').roundabout(function() { 
            $('img').click(function(){ 
                $('#outermost').scrollTo($(this).attr('id'),800); 
                return false; 
            }); 
        });
}); 

You can queue using . and call the function after completing the first effect. Something like below,

$("div").click(function () {
  $(this).hide("slide", { direction: "down" }, 1000)
      .show("slide", {direction: "down"}, 1000);
 });

DEMO here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文