2013-10-23 59 views

回答

0

修改插件代碼:

h.html('<div style="position:absolute;top:210px;">'+j.attr("alt")+'</div>'); 

檢查這裏的工作演示:http://jsfiddle.net/F3rCK/

+0

嘿Joke_Sense10:我想在整個圖像中顯示不透明度。 – Rajnikanth

+0

@Rajnikanth檢查我更新的代碼.. :) –

+0

嗨Joke_Sense10當我把這段代碼放到我的實時代碼中時,我看不到文本。任何想法? – Rajnikanth

0

集CSS中div.capty-caption

在此

設置heightline-height財產在CSS它會很有幫助

JQUERY.CAPTY.CSS

div.capty-caption { 
    background-color: #000; 
    color: #FFF; 
    font: bold 11px verdana; 
    padding-left: 10px; 
    padding-top: 7px; 
    text-shadow: 1px 1px 0 #222; 
    line-height:---SET HERE---; 

} 
1

如果你讀了文檔,您可以複製粘貼這個代碼

$('#content').capty({ 
    height: 46, 
    opacity: .6 
}); 

而在你的jsfiddle:

$(function() { 
    $('.default').capty({ 
     height: 46, // Here you init the height of your caption 
     opacity: .6 
    }); 
}); 
+0

謝謝,但我想在整個圖像中顯示不透明度。 – Rajnikanth

+0

雅我檢查文件,但當我懸停時,文字上升。文字必須顯示在底部位置。 – Rajnikanth

+0

你想要所有圖像中的黑色矩形,但底部的文字? –

相關問題