jQuery Galleria 幻灯片,故障排除
我正在尝试安装在这里找到的 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>
在正文中我放入:
什么也没有出现。
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">
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?
</script>
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需要包含 jQuery 一次。
您可以尝试将其添加到正文中:
如果未显示消息“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:
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.