有谁知道如何将图片保留在图片滑块上? 如果插件是解决方案,它们不应该很重,应该易于理解和实现。
答案 0 :(得分:0)
您可以使用data-caption
或图片后的span
在每张图片下添加字幕。
您可以使用title
标记添加更大的文字,例如:
<div class="MagicSlideshow">
<img src="example1.jpg" data-caption="Descriptive text can go here." title="Title here"/>
<img src="example2.jpg" data-caption="You can have one or two sets of text, or none at all." title="Another title"/>
<img src="example3.jpg" data-caption="You can also use HTML such as<b>bold</b>,<i>italic</i> and<a href='/magicslideshow/'>links</a>."/>
</div>
Plz参考这个。