0
如何在Lightbox中的圖片下方放置圖片說明?在Lightbox中添加圖片說明?
我用這個燈箱插件: http://leandrovieira.com/projects/jquery/lightbox/
如何在Lightbox中的圖片下方放置圖片說明?在Lightbox中添加圖片說明?
我用這個燈箱插件: http://leandrovieira.com/projects/jquery/lightbox/
的描述來自於標籤的title屬性服用。像
<a href="image.jpg" title="Example image">
<img src="thumb_image.jpg">
</a>
所以你的描述會示例圖像。
您必須設置標題欄,像這樣:
<a href="img.jpg" title="enter a title here">
<img src="thumb_img.jpg" alt="no image title here" />
</a>
這將是完全W3認證。 alt =圖像的替代文字。
我說腳本只是把它放在「a」標籤的標題中。 – Flops