1

如何删除彩盒上的关闭动画?我下面的代码只删除了开头的过渡。提前致谢。

$(".displayAddProducts").colorbox({
    inline: true, 
    width: "70%", 
    height: "50%", 
    transition: "none", 
    fadeOut: "0"
});
4

1 回答 1

2

Just remove the " from the fadeOut:

$(".displayAddProducts").colorbox({
    inline: true, 
    width: "70%", 
    height: "50%", 
    transition: "none", 
    fadeOut: 0
});
于 2013-10-11T15:30:02.120 回答