|
@@ -297,60 +297,60 @@
|
|
|
BannerList();
|
|
|
GetNavList();
|
|
|
About();
|
|
|
- var winResize = function() {
|
|
|
- var width = $(window).width();
|
|
|
- var height = $(window).height();
|
|
|
- $('.full-height').height(height);
|
|
|
-
|
|
|
- if(width <= 767) {
|
|
|
- $('body').addClass('small-screen');
|
|
|
- $('body').removeClass('normal-screen');
|
|
|
- } else {
|
|
|
- $('body').removeClass('small-screen');
|
|
|
- $('body').addClass('normal-screen');
|
|
|
- }
|
|
|
-
|
|
|
- if($('body').hasClass('normal-screen')) {
|
|
|
- $('.bg-contactus').height(height - $('footer').outerHeight());
|
|
|
- } else {
|
|
|
- $('main').css('min-height', $(window).height() - $('footer').outerHeight(true));
|
|
|
- }
|
|
|
-
|
|
|
- $('.lrlist').each(function(index, el) {
|
|
|
- var $this = $(this);
|
|
|
- var count = $this.data('count-pc');
|
|
|
- if($('body').hasClass('small-screen')) {
|
|
|
- count = $this.data('count-mb');
|
|
|
- }
|
|
|
- $this.find('ul li').width(Math.floor($this.width() / count));
|
|
|
- $this.find('ul').width($this.find('ul li').width() * ($this.find('ul li').length + 1));
|
|
|
- });
|
|
|
- }
|
|
|
- $(function() {
|
|
|
- $(window).resize(function() {
|
|
|
- winResize();
|
|
|
- });
|
|
|
- winResize();
|
|
|
- setTimeout(function() {
|
|
|
- winResize();
|
|
|
- }, 100);
|
|
|
-
|
|
|
- $(window).scroll(function() {
|
|
|
- var sTop = $(window).scrollTop();
|
|
|
- var wHeight = $(window).height();
|
|
|
- var sBottom = wHeight - ($('body').height() - sTop);
|
|
|
-
|
|
|
- });
|
|
|
- $('header .mbtn').click(function(event) {
|
|
|
- $('body').toggleClass('on-menu');
|
|
|
- return false;
|
|
|
- });
|
|
|
- $('header .menu >a').click(function(event) {
|
|
|
- $('body').removeClass('on-menu');
|
|
|
- return false;
|
|
|
- });
|
|
|
-
|
|
|
- });
|
|
|
+// var winResize = function() {
|
|
|
+// var width = $(window).width();
|
|
|
+// var height = $(window).height();
|
|
|
+// $('.full-height').height(height);
|
|
|
+//
|
|
|
+// if(width <= 767) {
|
|
|
+// $('body').addClass('small-screen');
|
|
|
+// $('body').removeClass('normal-screen');
|
|
|
+// } else {
|
|
|
+// $('body').removeClass('small-screen');
|
|
|
+// $('body').addClass('normal-screen');
|
|
|
+// }
|
|
|
+//
|
|
|
+// if($('body').hasClass('normal-screen')) {
|
|
|
+// $('.bg-contactus').height(height - $('footer').outerHeight());
|
|
|
+// } else {
|
|
|
+// $('main').css('min-height', $(window).height() - $('footer').outerHeight(true));
|
|
|
+// }
|
|
|
+//
|
|
|
+// $('.lrlist').each(function(index, el) {
|
|
|
+// var $this = $(this);
|
|
|
+// var count = $this.data('count-pc');
|
|
|
+// if($('body').hasClass('small-screen')) {
|
|
|
+// count = $this.data('count-mb');
|
|
|
+// }
|
|
|
+// $this.find('ul li').width(Math.floor($this.width() / count));
|
|
|
+// $this.find('ul').width($this.find('ul li').width() * ($this.find('ul li').length + 1));
|
|
|
+// });
|
|
|
+// }
|
|
|
+// $(function() {
|
|
|
+// $(window).resize(function() {
|
|
|
+// winResize();
|
|
|
+// });
|
|
|
+// winResize();
|
|
|
+// setTimeout(function() {
|
|
|
+// winResize();
|
|
|
+// }, 100);
|
|
|
+//
|
|
|
+// $(window).scroll(function() {
|
|
|
+// var sTop = $(window).scrollTop();
|
|
|
+// var wHeight = $(window).height();
|
|
|
+// var sBottom = wHeight - ($('body').height() - sTop);
|
|
|
+//
|
|
|
+// });
|
|
|
+// $('header .mbtn').click(function(event) {
|
|
|
+// $('body').toggleClass('on-menu');
|
|
|
+// return false;
|
|
|
+// });
|
|
|
+// $('header .menu >a').click(function(event) {
|
|
|
+// $('body').removeClass('on-menu');
|
|
|
+// return false;
|
|
|
+// });
|
|
|
+//
|
|
|
+// });
|
|
|
});
|
|
|
//左侧栏目
|
|
|
function GetNavList() {
|