リストを個数毎に区切ってスタイルを指定する
$('li').each(function(index){ //3つごとに設定 if(Math.floor(index/3)%2==0){ //classを付加 $(this).css('color','blue'); }else{ $(this).css('color','red'); }; });
WPなど案件構築覚書
$('li').each(function(index){ //3つごとに設定 if(Math.floor(index/3)%2==0){ //classを付加 $(this).css('color','blue'); }else{ $(this).css('color','red'); }; });
ul.circleList { padding-left: 1.5em; li {text-indent: -1.5em; list-style-type: none; margin-left: 1.5em; &::before { content: "●"; margin-right: 0.5em; } } }