// JavaScript Document $(function(){ $('.anchor a[href^="#"]').click(function() { var speed = 500; var href = $(this).attr('href'); var target = $(href == '#' || href == '' ? 'html' : href); var position = target.offset().top; $('body,html').animate({ scrollTop: position }, speed, 'swing'); return false; }); }); jQuery(function ($) { $('.js_accordion_top').on('click', function () { /*クリックでコンテンツを開閉*/ $(this).next().slideToggle(200); /*矢印の向きを変更*/ $(this).toggleClass('open', 200); }); }); $(function () { $('.js_accordion_menu').on('click', function () { $(this).next().slideToggle(); //openクラスをつける $(this).toggleClass("open"); //クリックされていないac-parentのopenクラスを取る $('.js_accordion_menu').not(this).removeClass('open'); // 一つ開くと他は閉じるように $('.js_accordion_menu').not($(this)).next('.ac-child').slideUp(); }); }); $(function(){ $(".modal_img").click(function() { $(".modal_diaplay").html($(this).prop('outerHTML')); $(".modal_diaplay").fadeIn(200); }); $(".modal_diaplay, .modal_diaplay img").click(function() { $(".modal_diaplay").fadeOut(200); }); });