$(document).ready(function(){ // 首頁收合動態 $('.listarea .arrbtn').on('touchend click', function(e){ var _openbtn = $(e.currentTarget); var _cont = _openbtn.parent().parent(); var _root = _openbtn.parent().parent().parent(); var _attrOn = {}; var _attrOff = {}; if(_root.hasClass('mbox-1')) { _attrOn = {width:'582px',height:'190px'};/*20160411 修改*/ _attrOff = {width:'377px',height:'190px'};/*20160418 修改*/ } if(_cont.hasClass('inactive')){ _cont.removeClass('inactive'); $('.navItem.hide',_cont).stop(false, false).delay(50).show(150); _cont.stop().animate(_attrOn, 250,'easeOutQuint', function(){ _openbtn.addClass('act'); _cont.addClass('active'); }); }else if(_cont.hasClass('active')){ _cont.removeClass('active'); $('.navItem.hide',_cont).hide(0); _cont.stop().animate(_attrOff, 250,'easeOutQuint', function(){ _openbtn.removeClass('act'); _cont.addClass('inactive'); }); } }); // scrollTo animation $('.scrollTo').on('click', function(e){ e.preventDefault(); var _id = e.currentTarget.href.split('#')[1]; $('html,body').animate({scrollTop:$('#'+_id).position().top }, 350); }); });