我有一个无法解决的 js 转换。共有三个链接,蓝色/绿色/红色,当您选择其中一个链接时,颜色样本会滑入向上位置。再次推动相同的链接,使色样滑入向下位置。
在滑入向上位置之前,如何让每个色板将所有其他色板滑入向下位置?
// When the DOM is ready, initialize the scripts.
jQuery(function( $ ){
// Get a reference to the container.
var container = $( ".container" );
// Bind the link to toggle the slide.
$( "a" ).click(
function( event ){
// Prevent the default event.
event.preventDefault();
// Toggle the slide based on its current visibility.
if (container.is( ":visible" )){
// Hide - slide up.
container.slideUp(500, function(){ $('').show(); });
} else {
// Show - slide down.
container.slideDown(500, function(){ $('').hide(); });
}
}
);
});