window.onload = function () { // 可视区域动画 show(); share(); var windowTop = $(window).scrollTop(); if (windowTop > 100) { $('header').addClass("hdBgcolor"); $('.windowFloat').addClass("goTop"); } else { $('header').removeClass("hdBgcolor"); $('.windowFloat').removeClass("goTop"); } $(window).scroll(function () { // // 获取的是浏览器可见区域高度(网页的可视区域的高度)(不滚动的情况下) var windowTop = $(window).scrollTop(); if (windowTop > 100) { $('header').addClass("hdBgcolor"); $('.windowFloat').addClass("goTop"); } else { $('header').removeClass("hdBgcolor"); $('.windowFloat').removeClass("goTop"); } show(); }); function show() { var documentClientHeight = document.documentElement.clientHeight || window.innerHeight // 元素顶端到可见区域(网页)顶端的距离 var htmlList = $(".gShow"); for (var i = 0; i < htmlList.length; i++) { var htmlElementClientTop = $(htmlList[i]).get(0).getBoundingClientRect().top; // 网页指定元素进入可视区域 if (documentClientHeight >= htmlElementClientTop) { $(htmlList[i]).css('transform', 'translate3d(0, 0, 0)'); $(htmlList[i]).css('animation', 'mymove infinite'); $(htmlList[i]).css('animation-duration', '1.2s'); $(htmlList[i]).css('-webkit-animation', 'mymove infinite'); $(htmlList[i]).css('-webkit-animation-duration', '1.2s'); $(htmlList[i]).css('animation-iteration-count', '1'); // $(htmlList[i]).css('animation-delay',(i*0.5)+'s'); $(htmlList[i]).css('opacity', '1'); } } } // 图片放大 // if ($('.lightbox').length > 0) { // $('.lightbox').lightbox(); // } // 分享 function share(){ window._bd_share_config={ "common":{ "bdSnsKey":{}, "bdText":"", "bdMini":"1", "bdMiniList":["sqq","qzone","weixin","tsina"], "bdPic":"","bdStyle":"0","bdSize":"16" }, "share": {}, "slide":{"type":"slide","bdImg":"6","bdPos":"left","bdTop":"170.5"} }; with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)]; } // 首页轮播图 var mySwiper1 = new Swiper('.home_1_top .swiper-container', { autoplay: { delay: 3000, stopOnLastSlide: false, disableOnInteraction: false, }, effect: 'fade', navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, pagination: { el: '.swiper-pagination', clickable: true, } }); // home4轮播 var mySwiper1 = new Swiper('.home_4_top .swiper-container', { autoplay: { delay: 3000, stopOnLastSlide: false, disableOnInteraction: false, }, effect: 'fade', navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, pagination: { el: '.swiper-pagination', clickable: true, } }); $('.home_41 .tabs span').on({ mouseover: function () { var type = $(this).attr('data-type'); console.log(type); var l = $('.home_41 .tabs span'); for (var i = 0; i < l.length; i++) { var types = $(l[i]).attr('data-type'); if (type == types) { $(l[i]).addClass('active'); $('.home_42_' + types).css('display', 'block'); } else { $(l[i]).removeClass('active'); $('.home_42_' + types).css('display', 'none'); } } } }); // 回到顶部 $(document).on("click", ".floatWindow a:last-child", function () { $('html, body').animate({ scrollTop: 0 }, 500); return false; }); // 悬浮窗收缩 $(document).on('click', '.floatWindow .close', function () { var tCls=$(this).parents('.floatWindow').attr('class'); if(tCls.indexOf('hide')>-1){ $(this).parents('.floatWindow').removeClass('hide'); }else{ $(this).parents('.floatWindow').addClass('hide') } }); //窗口显示才加载 var wrapTop = $(".zd_main").offset().top; var istrue = true; $(window).on("scroll", function () { var s = $(window).scrollTop(); if (s > wrapTop - 500 && istrue) { $(".timer").each(count); function count(a) { var b = $(this); a = $.extend({}, a || {}, b.data("countToOptions") || {}); b.countTo(a) }; istrue = false; }; }) //设置计数 $.fn.countTo = function (options) { options = options || {}; return $(this).each(function () { //当前元素的选项 var settings = $.extend({}, $.fn.countTo.defaults, { from: $(this).data('from'), to: $(this).data('to'), speed: $(this).data('speed'), refreshInterval: $(this).data('refresh-interval'), decimals: $(this).data('decimals') }, options); //更新值 var loops = Math.ceil(settings.speed / settings.refreshInterval), increment = (settings.to - settings.from) / loops; //更改应用和变量 var self = this, $self = $(this), loopCount = 0, value = settings.from, data = $self.data('countTo') || {}; $self.data('countTo', data); //如果有间断,找到并清除 if (data.interval) { clearInterval(data.interval); }; data.interval = setInterval(updateTimer, settings.refreshInterval); //初始化起始值 render(value); function updateTimer() { value += increment; loopCount++; render(value); if (typeof (settings.onUpdate) == 'function') { settings.onUpdate.call(self, value); } if (loopCount >= loops) { //移出间隔 $self.removeData('countTo'); clearInterval(data.interval); value = settings.to; if (typeof (settings.onComplete) == 'function') { settings.onComplete.call(self, value); } } } function render(value) { var formattedValue = settings.formatter.call(self, value, settings); $self.html(formattedValue); } }); }; $.fn.countTo.defaults = { from: 0, //数字开始的值 to: 0, //数字结束的值 speed: 1000, //设置步长的时间 refreshInterval: 100, //隔间值 decimals: 0, //显示小位数 formatter: formatter, //渲染之前格式化 onUpdate: null, //每次更新前的回调方法 onComplete: null //完成更新的回调方法 }; function formatter(value, settings) { return value.toFixed(settings.decimals); } }