如何在图像滑块上保留文字?

时间:2015-08-12 10:44:22

标签: javascript jquery html5 css3

有谁知道如何将图片保留在图片滑块上? 如果插件是解决方案,它们不应该很重,应该易于理解和实现。

1 个答案:

答案 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参考这个。

Demo

相关问题