WordPress jQuery 淡入、淡出不起作用

发布于 2024-12-07 19:33:55 字数 1741 浏览 0 评论 0原文

当我将静态 HTML 转移到 WP 主题时,我的淡入效果在画廊的导航按钮上停止工作。它们不再淡入/淡出,而是立即弹出。

这里的代码:

jQuery(document).ready(function($) {
  $("#showcase-nav").hide();
  $("#showcase").hover(function() {
    $("#showcase-nav").fadeIn("slow");
  }, function() {
    $("#showcase-nav").delay(800).fadeOut("slow");
  }
);

html:

        <div id="showcase-wrapper">
            <div id="showcase">
                <div id="showcase-items">
                    <a href="/portfolio/" title="Simona & Sebi - Wedding invitation design" class="active"><img src="/media/selected-simona-sebi.png" alt="Selected work - Simona & Sebi - Wedding invitation design" /></a>
                    <a href="/portfolio/" title="TEMISZ anniversary kit - Visual identity"><img src="/media/selected-temisz-anniversary-kit.png" alt="Selected work - TEMISZ anniversary kit - Visual identity" /></a>
                    <a href="/portfolio/" title="STMF - Visual identity"><img src="/media/selected-stmf-visual-identity.png" alt="Selected work - STMF - Visual identity" /></a>
                    <a href="/portfolio/" title="TEMISZ - Website design and development"><img src="/media/selected-temisz-website.png" alt="Selected work - TEMISZ - Website design and development" /></a>
                </div>
                <div id="showcase-nav">
                    <a href="#" class="goleft">Previous</a>
                    <a href="#" class="goright">Next</a>
                </div>
            </div>
        </div> <!-- END #showcase -->

PS: 我使用的是 noConflict

When I transfer my static HTML into a WP theme, my fadeIn effect stopped working on navigation buttons for a gallery. They no longer fadeIn/Out, but just pop up instantly.

here the code:

jQuery(document).ready(function($) {
  $("#showcase-nav").hide();
  $("#showcase").hover(function() {
    $("#showcase-nav").fadeIn("slow");
  }, function() {
    $("#showcase-nav").delay(800).fadeOut("slow");
  }
);

html:

        <div id="showcase-wrapper">
            <div id="showcase">
                <div id="showcase-items">
                    <a href="/portfolio/" title="Simona & Sebi - Wedding invitation design" class="active"><img src="/media/selected-simona-sebi.png" alt="Selected work - Simona & Sebi - Wedding invitation design" /></a>
                    <a href="/portfolio/" title="TEMISZ anniversary kit - Visual identity"><img src="/media/selected-temisz-anniversary-kit.png" alt="Selected work - TEMISZ anniversary kit - Visual identity" /></a>
                    <a href="/portfolio/" title="STMF - Visual identity"><img src="/media/selected-stmf-visual-identity.png" alt="Selected work - STMF - Visual identity" /></a>
                    <a href="/portfolio/" title="TEMISZ - Website design and development"><img src="/media/selected-temisz-website.png" alt="Selected work - TEMISZ - Website design and development" /></a>
                </div>
                <div id="showcase-nav">
                    <a href="#" class="goleft">Previous</a>
                    <a href="#" class="goright">Next</a>
                </div>
            </div>
        </div> <!-- END #showcase -->

P.S.: I am using noConflict

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文