$(function() { $(function(){var show = window.innerWidth <= 640 ? 3 : 9; //最初に表示する件数 var contents = '.caselist1 li.js_listItem:not([style*="display: none"])'; // 対象のlist $(contents + ':nth-child(n + ' + (show + 1) + ')').addClass('is-hidden'); // ウィンドウがリサイズされたときに表示するアイテムの数を再計算 $(window).resize(function() { var newShow = window.innerWidth <= 640 ? 3 : 9; var newNum = newShow === 3 ? 3 : 9; $(contents + ':nth-child(n + ' + (newShow + 1) + ')').addClass('is-hidden'); $(".caseListArea2").each(function () { var numItems = $(this).find('ul.caselist1 li.js_listItem:not([style*="display: none"])').length; if(numItems <= newNum){ $('.more1').addClass('is-hidden'); }else{ $('.more1').removeClass('is-hidden'); } }); }); $('.more1').on('click', function () { $(contents + '.is-hidden').fadeIn(300, function() { updateVisibility(); }).removeClass('is-hidden'); }); $('.close1-1').on('click', function () { $('.caselist1 li.js_listItem:not([style*="display: none"]):nth-of-type(n + 10)').addClass('is-hidden'); $(this).css('display','none'); $('.more1').removeClass('none'); //$('html, body').animate({ scrollTop: $('#anc1').offset().top }, 400); }); $('.close1-2').on('click', function () { $('.caselist1 li.js_listItem:not([style*="display: none"]):nth-of-type(n + 4)').addClass('is-hidden'); $(this).css('display','none'); $('.more1').removeClass('none'); //$('html, body').animate({ scrollTop: $('#anc1').offset().top }, 400); }); function updateVisibility() { if ($(contents + '.is-hidden').length == 0) { $('.more1').addClass('none'); $('.close1-1').css('display','block'); $('.close1-2').css('display','block'); } else { $('.more1').removeClass('none'); $('.close1').css('display','none'); $('.close1-2').css('display','none'); } } }); $(function(){ $(".caseListArea2").each(function () { var num = $(this).find('ul.caselist1 li.js_listItem:not([style*="display: none"])').length; if(num <= (window.innerWidth <= 640 ? 3 : 9)){ $('.more1').addClass('is-hidden'); }else{ $('.more1').removeClass('is-hidden'); } }); }); $(window).resize(function() { var newNum = window.innerWidth <= 640 ? 3 : 9; $(".caseListArea2").each(function () { var numItems = $(this).find('ul.caselist1 li.js_listItem:not([style*="display: none"])').length; if(numItems <= newNum){ $('.more1').addClass('is-hidden'); }else{ $('.more1').removeClass('is-hidden'); } }); }); $(function(){ var show = window.innerWidth <= 640 ? 3 : 9; //最初に表示する件数 var contents = '.caselist2 li.js_listItem:not([style*="display: none"])'; // 対象のlist $(contents + ':nth-child(n + ' + (show + 1) + ')').addClass('is-hidden'); // ウィンドウがリサイズされたときに表示するアイテムの数を再計算 $(window).resize(function() { var newShow = window.innerWidth <= 640 ? 3 : 9; var newNum = newShow === 3 ? 3 : 9; $(contents + ':nth-child(n + ' + (newShow + 1) + ')').addClass('is-hidden'); $(".caseListArea").each(function () { var numItems = $(this).find('ul.caselist2 li.js_listItem:not([style*="display: none"])').length; if(numItems <= newNum){ $('.more2').addClass('is-hidden'); }else{ $('.more2').removeClass('is-hidden'); } }); }); $('.more2').on('click', function () { $(contents + '.is-hidden').fadeIn(300, function() { updateVisibility(); }).removeClass('is-hidden'); }); $('.close2-1').on('click', function () { $('.caselist2 li.js_listItem:not([style*="display: none"]):nth-of-type(n + 10)').addClass('is-hidden'); $(this).css('display','none'); $('.more2').removeClass('none'); //$('html, body').animate({ scrollTop: $('#anc2').offset().top }, 400); }); $('.close2-2').on('click', function () { $('.caselist2 li.js_listItem:not([style*="display: none"]):nth-of-type(n + 4)').addClass('is-hidden'); $(this).css('display','none'); $('.more2').removeClass('none'); //$('html, body').animate({ scrollTop: $('#anc2').offset().top }, 400); }); function updateVisibility() { if ($(contents + '.is-hidden').length == 0) { $('.more2').addClass('none'); $('.close2-1').css('display','block'); $('.close2-2').css('display','block'); } else { $('.more2').removeClass('none'); $('.close2').css('display','none'); $('.close2-2').css('display','none'); } } }); $(function(){ $(".caseListArea").each(function () { var num = $(this).find('ul.caselist2 li.js_listItem:not([style*="display: none"])').length; if(num <= (window.innerWidth <= 640 ? 3 : 9)){ $('.more2').addClass('is-hidden'); }else{ $('.more2').removeClass('is-hidden'); } }); }); $(window).resize(function() { var newNum = window.innerWidth <= 640 ? 3 : 9; $(".caseListArea").each(function () { var numItems = $(this).find('ul.caselist2 li.js_listItem:not([style*="display: none"])').length; if(numItems <= newNum){ $('.more2').addClass('is-hidden'); }else{ $('.more2').removeClass('is-hidden'); } }); }); }); $(window).on('load resize', function(){ var w = $(window).width(); var x = 640; if (w <= x) { $('.js_leftSearchHeading').removeClass('open'); $('.js_industryList').css('display','none'); } else { } });