Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何删除彩盒上的关闭动画?我下面的代码只删除了开头的过渡。提前致谢。
$(".displayAddProducts").colorbox({ inline: true, width: "70%", height: "50%", transition: "none", fadeOut: "0" });
Just remove the " from the fadeOut:
"
fadeOut
$(".displayAddProducts").colorbox({ inline: true, width: "70%", height: "50%", transition: "none", fadeOut: 0 });