ソース コードのダウンロードを使用して、HTML5 コードに基づいて折りたたみメニューを実装します。レンダリングを以下に示します。気に入った方はソースコードをダウンロードすることもできます。
エフェクト表示 ソースコードダウンロード
hmtl コード :
js コード:
(function ($) {
var カード = $('.card-drop')、トグラー = カード.find('.toggle')、リンク = カード.find('ul>li>a')、li = links.parent(' li') , count = links.length, width = 100;
li.each(function (i) {
$(this).css('z-index', count - i);
});
function setClosed() {
li.each(function (index) {
$(this).css('top', Index * 4).css('width', width -インデックス * 0.5 '%').css('マージン左', インデックス * 0.25 '%');
});
li.addClass('closed');
toggler.removeClass(' active') ;
}
setClosed();
toggler.on('mousedown', function () {
var $this = $(this);
if ($this. is(' .active')) {
setClosed();
} else {
$this.addClass('active');
li.removeClass('closed');
li.each (関数 (インデックス) {
$(this).css('top', 60 * (インデックス 1)).css('width', '100%').css('margin-left' , '0px ');
});
}
});
links.on('click', function (e) {
var $this = $(this), label = $this.data('label');
icon = $this.children('i').attr('class');
li.removeClass('active');
if ($this .parent('li').is('active')) {
$this.parent('li').removeClass('active');
} else {
$this .parent( 'li').addClass('active');
}
toggler.children('span').text(label);
toggler.children('i').removeClass( ).addClass (icon);
setClosed();
e.preventDefault;
});
}(jQuery));