$(function () { //zoom $(window).resize(function () { $('[zoom-width][zoom-heigh]:visible').each(function () { $(this).height($(this).width() * parseint($(this).attr('zoom-heigh')) / parseint($(this).attr('zoom-width'))); }); }).resize(); //end //g_content img $('.g_content img').each(function () { $(this).width('auto').height('auto'); }); //end //menu $('.g_header .menu').click(function () { var n = $('.g_header .nav'); n.hasclass('show') ? n.removeclass('show') : n.addclass('show'); return false; }); //end //tool $('.g_footer .back').click(function () { $('html,body').animate({ scrolltop: 0 }, 300); return false; }); //end });