require.async(['modules/header/index'],function (fn){ fn() }) require.async(['modules/header2/index'],function (fn){ fn() }) require.async(['modules/nav/index'],function (fn){ fn() }) require.async(['modules/side/index'],function(fn){ fn() }) require.async(['modules/slide/index'],function(fn){ fn() }) $(function(){ $('.ui-show-tab:first-child').addClass('ui-show-tab-on'); $('a.ui-nav-item').on('mouseover',function(){ var index_navIndex = $(this).index() -1; $('.ui-show-tab').each(function(){ if ($(this).index() ==index_navIndex) { $(this).addClass('ui-show-tab-on').siblings().removeClass('ui-show-tab-on'); }; }) }) $('.pic').css({ "width":"100%", "height":"100%" }); })