// レスポンシブ対応モーダル (フェードスライダー) ///////////////////////////////////////////////////////////////////////////////////// $(function(){ $('.or_modalOpen').click(function(){ var p = $(window).scrollTop(); var gatHref = $(this).attr('href'); var gatID = gatHref.replace(/#/g,''); $('.or_modal').css('top', p+'px'); $('.or_mask, .or_modal, .'+gatID).css({'display': 'block', 'opacity': '0'}); $('.or_mask').stop().animate({opacity: 1}, 500, function(){ $(' .or_modal, .'+gatID).stop().animate({opacity: 1}, 500); }); //ch $('.or_msNext,.or_msPrev').click(function () { var gatHrefN = $(this).attr('href'); var nextID = gatHrefN.replace(/#/g,''); $('.or_modal .or_modalBox, .'+nextID).css({'display': 'none', 'opacity': '0'}); $('.or_mask').stop().animate({opacity: 1}, 500, function(){ $('.or_modal, .'+nextID).css('display', 'block'); $('.or_modal, .'+nextID).stop().animate({opacity: 1}, 500); }); return false; }); }); $('.or_mask, .or_close').click(function(){ $('.or_mask, .or_modal, .or_modal .or_modalBox ').stop().animate({opacity: 0}, 300, function(){ $(this).css({'display': 'none', 'opacity': '0'}); }); }); }); // Scroll ///////////////////////////////////////////////////////////////////////////////////// $(function () { //ページ上部へスクロール $(".or_Pagetop").click(function () { $('html,body').animate({ scrollTop: 0 }, '2000'); return false; }); });