隐藏Colorbox / Justified Gallery中的工具提示

时间:2014-02-02 13:49:13

标签: jquery tooltip gallery colorbox

我正在使用Justified Gallery制作图像数组(http://miromannino.com/projects/justified-gallery/comment-page-3/#comment-73055)。为Colorbox标题提供了“标题”文本,为缩略图标题提供了“img alt”文本。

我真的想关闭工具提示,因为它们很烦人并复制缩略图标题,但我不能删除标题文本而不删除不同的Colorbox标题。

以下是代码段:

<a href="images/pics/Head-Smashed-in-Ft-Mcleod.jpg" title="<strong>Head Smashed In,
Ft. McLeod &#8250; August 2007.</strong> There really is a Head-Smashed-In Park to
commemorate the native buffalo hunts.">
   <img alt="Head Smashed In, Ft. McLeod &#8250;
   August 2007." src="images/thumbs/Head-Smashed-in-Ft-Mcleod.jpg" />
</a>

</div>

<script type="text/javascript">
$("#myGallery").justifiedGallery({
    'justifyLastRow':false, 
    'rowHeight':180, 
    'rel':'gallery2',
    'margins':0,
    'onComplete': function(gal) {
        $(gal).find("a").colorbox({
            maxWidth : "80%",
            maxHeight : "80%",
            opacity : 0.8,
            overlayClose: "true",
            transition : "elastic",
            current : ""
        });     
    }
}); 

 </script>

1 个答案:

答案 0 :(得分:0)

有以下设置:caption

$("#myGallery").justifiedGallery({ 'justifyLastRow':false, 'rowHeight':180, 'rel':'gallery2', 'margins':0, 'captions':false, 'onComplete': function(gal) { $(gal).find("a").colorbox({ maxWidth : "80%", maxHeight : "80%", opacity : 0.8, overlayClose: "true", transition : "elastic", current : "" });
} });