syannu
4/26/2017 - 2:55 AM

アコーディオン

var heightAcrdTop = ($('.acrdTop').height()) + 10;
var heightAcrdBtm = ($('.acrdBtm').height()) + 10;
var slideSpeed = 500;

$('.acrdTop').css('height', heightAcrdTop);
$('.acrdBtm').css('height','0px');

$('#openAcrdTop').tap(function() {
	$(this).parent().parent().find('.acrdBtm').stop(false, true).animate({height:'0px'},slideSpeed);
	$(this).parent().parent().find('.acrdTop').stop(false, true).animate({height:heightAcrdTop + 'px'},slideSpeed);
});
$('#openAcrdBtm').tap(function() {
	$(this).parent().parent().find('.acrdTop').stop(false, true).animate({height:'0px'},slideSpeed);
	$(this).parent().parent().find('.acrdBtm').stop(false, true).animate({height:heightAcrdBtm + 'px'},slideSpeed);
});