我有一個js過渡我無法解決。有三個鏈接,藍色/綠色/紅色,當您選擇顏色色板滑入上面位置的其中一個鏈接時。再次推動相同的鏈接,使色樣滑入下面位置。滑動轉換不在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(); });
}
}
);
});
你給我的建議是理想的,但我需要它在小提琴內的if語句中工作,所有的選項都是src img,沒有一個是數據顏色。如果你可以修改它,你的代碼將是理想的。 – need2nobasis