// JavaScript Document $(function() { if(!_s.browser.isPC) { } //operation(); var scale; var scale2; var w; var h; $(window).resize(resize); resize(); function resize() { w = $(window).width(); h = $(window).height(); if(w > 1300) { $('#main').height(h - 82 - 22); } else if(w > 1024) { $('#main').height(h - 61 - 22); } else if(w > 750) { $('#main').height(h - 56 - 22); } else { $('#main').height(h - 42 - 16); } if(w > 770) { scale = $('#main').height() / 842; $('.btnAll').css({ 'transform': 'scale(' + scale + ')', 'right': 0, 'top': 0 }); } else if(w > 750 && w <= 770) { $('.btnAll').css({ 'transform': 'scale(0.7)', 'right': '-40px', 'top': '260px' }); } else { scale2 = w / 414; $('.btnAll').css({ 'transform': 'scale(' + 0.5 * scale2 + ')' }); } //_s.zoomDom($("#mainBg"),_s.gmath.getScale(1898,976,$(window).width(),Math.max($(document).height(),$(window).height()),false)); } function operation() { $('.btn5').click(function() { window.open('http://www.leo.cn/'); }) $('.btn4').click(function() { window.open('http://www.leo.cn/'); }) $('.btn3').click(function() { window.open('http://www.leo.cn/'); }) $('.btn2').click(function() { //window.open('http://www.leo.cn/'); }) $('.btn1').click(function() { //window.open('http://www.leogroup.cn/pumps/index.aspx'); }) } })