我正在使用Galleria,我想使用经典主题并有字幕。那可能吗?如果是这样,我该如何设置?
答案 0 :(得分:14)
当然,classic demo有标题(点击左上角 i 显示标题),您只需设置alt
和title
img
标签的元素,你就完成了。
如果您没有看到它,请确保将showInfo选项设置为true
,如果您想一直显示它,请在经典主题的js文件中搜索此行:
// set this to false if you want to show the caption all the time:
_toggleInfo: true
并将_toggleInfo
设置为false
答案 1 :(得分:3)
找到Galleria's quick start page(与经典主题一起使用):
<div id="galleria">
<img src="/img/pic1.jpg" data-title="My title" data-description="My description">
<img src="/img/pic2.jpg" data-title="Another title" data-description="My HTML description">
</div>
答案 2 :(得分:0)
我遇到了同样的问题。与Firebug一起发现div存在但是标准主题的CSS这些块不显示。
所以基本上从galleria.classic.css中删除第76行: display:none;
在此之后,仍然需要进行一些调整以使其看起来很好,但至少你知道问题的来源。