我想我解決了你的問題,但我無法測試它,因爲你的小提琴不能像你創建它一樣工作。
從Appends image captions to the DOM
這種變化的代碼:
/**
* Appends image captions to the DOM
* NETCreator enhancement (http://www.netcreator.ro)
*/
var appendCaptions = function(){
// cycle through each child
slider.children.each(function(index){
// get the image title attribute
var title = $(this).find('img:first').attr('title');
var nc_subtitle = $(this).find('img:first').attr('nc-subtitle');
// append the caption
if (title != undefined && ('' + title).length && nc_subtitle != undefined && ('' + nc_subtitle).length) {
$(this).append('<div class="bx-caption"><span class="title">' + title + '</span><br/><span class="nc_subtitle">' + nc_subtitle + '</span></div>');
}
});
}
現在你可以添加字幕對您的字幕標題:
<a href ="page.php">
<img src="http://calindragan.files.wordpress.com/2011/01/winter.jpg" title="title 1 here" nc-subtitle="The second title"/>
</a>
只要你想你可以風格的字幕,使用CSS類nc_subtitle
。
希望它能幫助!
編輯
變化由你在擺弄這個共享整個的JavaScript:
http://pastebin.com/0fvUezg1
和HTML這一點:
http://pastebin.com/T038drDV
它的工作原理。
你撥弄沒有工作... –
我只是使用共享所有代碼的小提琴。有很多。我不知道如何讓那小提琴奏效。雖然它在我的網站上工作。 – RandomPleb
好的,檢查我的答案。 –