; var default_index_ops = { init: function () { this.eventBind(); }, eventBind: function () { var swiper = new Swiper('#banner .swiper-container', { autoplay: true, loop: true, spaceBetween: 30, hashNavigation: { watchState: true, }, pagination: { el: '#banner .swiper-pagination', clickable: true, }, }); //瑙嗛鑷姩鎾斁 // $(window).scroll(function(){ // var width = $(document).width(); // if(width >= 1200){ // default_index_ops.autoVideo(); // } // }) }, autoVideo: function () { var top = $('.video-box').offset().top; var slideHeight = $(window).scrollTop() + 100; var video = $('.video-box video')[0]; if(slideHeight >= top && video.paused){ video.play(); } } }; $(document).ready(function () { default_index_ops.init(); });