我想在jssor插件
中的image标签外添加一个标题<div>
<img u="image" src="bilder/bild2.jpg" />
<div class="caption" u="caption" ><p>Caption text</p></div>
</div>
因此标题不会覆盖图像 - 而是放在图像下面。 (怎么样)可能吗?
答案 0 :(得分:2)
请使用&#39;位置,顶部,左侧,宽度,高度等的内联样式。标题。
<div>
<img u="image" src="bilder/bild2.jpg" />
<div class="caption" style="position: absolute; top: ...px; left: ...px; width: ...px; height: ...px;" u="caption" ><p>Caption text</p></div>
</div>