我正在尝试安装此处的jquery幻灯片“galleria”:Galleria site - How to install it (script)
我已经在我的网站“head”中调用了jquery库,如下所示:<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>
用于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>
在身体中我放了:<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>
什么都没有出现。
答案 0 :(得分:0)
你只需要包含一次jQuery。
您可以尝试将其添加到正文中:
<script>
if (Galleria) { $("body").text('Galleria works') }
</script>
如果消息“Galleria works”没有显示,那么你的一条路径可能就错了。确保“galleria-1.2.2.min.js”和“galleria.classic.min.js”的路径正确无误。还要确保使用最新版本的jQuery和Galleria。
要获得更好的答案,您需要发布指向该网站的链接。