如何将 Yoxview infoPanel 放在图像正下方

发布于 2025-01-07 01:13:02 字数 375 浏览 0 评论 0原文

在 yoxview 中,我通过在 $(document).ready 语句中插入自定义选项来指定 #yoxview_infoPanel 应出现在图像框外部:

<script type="text/javascript">

            $(document).ready(function(){

                $(".yoxview").yoxview({

    renderInfoExternally:"true",

                });

            });

        </script>

但是,现在信息面板出现在页面的最底部。如何将信息面板置于图像正下方居中?

In yoxview, I specified that the #yoxview_infoPanel should appear outside the image box by inserting the custom options in the $(document).ready statement:

<script type="text/javascript">

            $(document).ready(function(){

                $(".yoxview").yoxview({

    renderInfoExternally:"true",

                });

            });

        </script>

However, now the info panel appear on the very bottom the page. How do I put the info panel below right below the image, centered?

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

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

发布评论

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

评论(2

心在旅行 2025-01-14 01:13:02

我想知道您是否在比 1.5.2 新的 jQuery 版本中运行 YoxView?如果是的话,它确实会做出意想不到的事情。尝试返回 1.4 或 1.5,看看它是否正确响应。

I wonder if you're running YoxView in ab jQuery version newer than 1.5.2? If you are, it does do unexpected things. Try going back to 1.4 or 1.5 and see if it responds correctly.

半透明的墙 2025-01-14 01:13:02

从这篇文章:

https://drupal.org/node/1677038

看来 YoxView 可以与最近的 jQuery 配合使用版本如果您:

在 jquery.yoxview-2.21.min.js 文件中查找/替换“className”(确保大小写,大写 N)并将其替换为“class”。当您对 className 进行查找/替换时,请确保指定它必须完全匹配,即“完整单词”和“区分大小写”。还有其他变量名称包含“className”,如果您用“class”替换该部分,可能会破坏它。

From this post:

https://drupal.org/node/1677038

it seems that YoxView works with recent jQuery versions if you:

do a find/replace on your jquery.yoxview-2.21.min.js file for "className" (make sure of the casing, capital N) and replace it with "class". When you do the find/replace for className, make sure you specify that it must match exactly, both the "full word" and "case sensitive". There are other variable names that include "className", and if you replace that part with "class" it may break it.

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