我正在尝试使用title属性来确认筹款工作中的参与者。我在href中添加了title标签,但它只以一种方式显示。 inside属性什么都不做。此外,标题定位在IE 9中偏向右侧,在FF中看起来很好。
这是页面http://ipga.com/communications/photos/2013/bfc/index.asp
页面中我的FancyBox调用如下所示:
$("a.grouped_elements").fancybox({
padding: 0,
openEffect : 'elastic',
openEasing : 'easeOutBack',
openSpeed: 500,
closeEffect : 'elastic',
closeEasing : 'easeInBack',
closeSpeed: 500,
closeClick : true,
titlePosition : 'inside'
});
任何想法都会有所帮助。
答案 0 :(得分:1)
选项titlePosition
适用于fancybox v1.3.4。对于v2.x(您正在使用的那个),请使用以下格式:
$("a.grouped_elements").fancybox({
helpers : {
title: {
type: 'inside'
}
},
// other API options here v2.x
});