取消 PageLoad 上的 FancyBox

发布于 2024-10-02 20:30:07 字数 734 浏览 3 评论 0原文

我在我的网站上设置了一个 FancyBox,但它是在 PageLoad 上打开的,而不是我想要的通过点击触发的。我对 jQuery 和 javascript 等完全是新手,所以请耐心等待。下面是我已经设置的代码:`

        $(document).ready(function() {
            $(".iframe").fancybox({ 
            'transitionIn'  :   'elastic',
            'transitionOut' :   'elastic',
            'speedIn'   :   600, 
            'speedOut'  :   200, 
            'overlayShow'   :   true,
            'autoScale' :   true,
            'width'     :   '50%',
            'height'    :   '90%',
            'overlayOpacity':   0.8,
            'centerOnScroll':   true,
            'showCloseButton':  true

            });


            $(".iframe").trigger('click');
        });

`

I have a FancyBox set up on my site, but it is opening on PageLoad as opposed to what I want which is for it to be triggered by a click. I'm a total novice with jQuery and javascript, etc, so bear with me here. Below is the code I already have set up:`

        $(document).ready(function() {
            $(".iframe").fancybox({ 
            'transitionIn'  :   'elastic',
            'transitionOut' :   'elastic',
            'speedIn'   :   600, 
            'speedOut'  :   200, 
            'overlayShow'   :   true,
            'autoScale' :   true,
            'width'     :   '50%',
            'height'    :   '90%',
            'overlayOpacity':   0.8,
            'centerOnScroll':   true,
            'showCloseButton':  true

            });


            $(".iframe").trigger('click');
        });

`

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我爱人 2024-10-09 20:30:07

该代码

$(".iframe").trigger('click');

导致在负载上生成“单击”事件,只需删除该行即可。

The code

$(".iframe").trigger('click');

Causes a 'click' event to be generated on the load, just remove that line.

别在捏我脸啦 2024-10-09 20:30:07
$(document).ready(function() {

    $(".iframe").fancybox({ 
    'transitionIn'  :   'elastic',
    'transitionOut' :   'elastic',
    'speedIn'   :   600, 
    'speedOut'  :   200, 
    'overlayShow'   :   true,
    'autoScale' :   true,
    'width'     :   '50%',
    'height'    :   '90%',
    'overlayOpacity':   0.8,
    'centerOnScroll':   true,
    'showCloseButton':  true

    });

  $('a.trigger').click( function(e) {
    e.preventDefault();
    $(".iframe").trigger('click');
  });
});
$(document).ready(function() {

    $(".iframe").fancybox({ 
    'transitionIn'  :   'elastic',
    'transitionOut' :   'elastic',
    'speedIn'   :   600, 
    'speedOut'  :   200, 
    'overlayShow'   :   true,
    'autoScale' :   true,
    'width'     :   '50%',
    'height'    :   '90%',
    'overlayOpacity':   0.8,
    'centerOnScroll':   true,
    'showCloseButton':  true

    });

  $('a.trigger').click( function(e) {
    e.preventDefault();
    $(".iframe").trigger('click');
  });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文