jQuery Galleria 幻灯片,故障排除

发布于 2024-10-23 13:03:35 字数 1130 浏览 2 评论 0原文

我正在尝试安装在这里找到的 jquery 幻灯片“galleria”: Galleria 站点 - 如何安装它(脚本)

我已经在我的网站的“head”中调用 jquery 库,如下所示: 用于slidetoogle效果。` 我是否必须为“Galleria”幻灯片再次重新发布这行代码,或者对于这些插件和所有未来的插件来说一次就足够了?

这是我用于第二次调用 jquery 库的“galleria”的脚本,但这次是 1.4.4:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js">
</script><script src="http://xxx.com/file/xxx/galleria-1.2.2.min.js"></script>

在正文中我放入:

<脚本> Galleria.loadTheme('galleria/themes/classic/galleria.classic.min.js'); $("#gallery").galleria({ 宽度:500, 高度:500 });

什么也没有出现。

I am trying to install the jquery slideshow "galleria" found here: Galleria site - How to install it (script)

I already call the jquery library in the "head" of my site like this: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>
for the slidetoogle effect.` Do I have to repost this line of code one more time for the "Galleria" slideshow or once is enough for these plugins and all future ones?

Here is the script I use for the "galleria" calling the jquery library for the second time but it is the 1.4.4 this time:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js">
</script><script src="http://xxx.com/file/xxx/galleria-1.2.2.min.js"></script>

In the body I put: <div id="gallery">
<img src="http://xxx/file/xxx/80.jpg">
<img src="http://xxx/file/xxx/81.jpg">
<img src="http://xxx/file/xxx/82.jpg">
</div>
<script>
Galleria.loadTheme('galleria/themes/classic/galleria.classic.min.js');
$("#gallery").galleria({
width: 500,
height: 500
});
</script>

Nothing appears.

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

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

发布评论

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

评论(1

冬天旳寂寞 2024-10-30 13:03:35

您只需要包含 jQuery 一次。

您可以尝试将其添加到正文中:

<script>
if (Galleria) { $("body").text('Galleria works') }
</script>

如果未显示消息“Galleria Works”,则您的路径之一可能是错误的。确保“galleria-1.2.2.min.js”和“galleria.classic.min.js”的路径正确。还要确保使用最新版本的 jQuery 和 Galleria。

为了获得更好的答案,您需要发布该网站的链接。

You only need to include jQuery once.

You can try adding this to the body:

<script>
if (Galleria) { $("body").text('Galleria works') }
</script>

if the message "Galleria works" doesn't show up, one of your paths is probably wrong. Make sure the path to "galleria-1.2.2.min.js" and "galleria.classic.min.js" is correct. Also make sure to use the newest version of jQuery and Galleria.

For a better answer, you need to post a link to the site.

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