$(document).ready(function ($) { if($('.xyxw ').length>0){ if(window.location.href.indexOf($('.m-details .pic a').attr('href'))!=-1){ $('.m-details .pic a').hide() } } $('.searchbtn').click(function(){ $('.soBox').show() }) $('.closebtn').click(function(){ $('.soBox').hide() }) $('.m-list6 li .pic').each(function(){ if(!($(this).find('img').attr('src'))){ $(this).addClass('noimg') } }) // 手机导航 $('.menuBtn').append(''); $('.menuBtn').click(function (event) { $(this).toggleClass('open'); var _winw = $(window).width(); if ($(this).hasClass('open')) { if (_winw <= 1199) { $('.nav').stop().slideDown(); } } else { if (_winw <= 1199) { $('.nav').stop().slideUp(); } } }); function myNav() { var _winw = $(window).width(); if (_winw > 1199) { $('.nav li').bind('mouseenter', function () { $(this).find('dl').stop().slideDown(); if ($(this).find('dl').length) { $(this).addClass('ok'); } }); $('.nav li').bind('mouseleave', function () { $(this).removeClass('ok'); $(this).find('dl').stop().slideUp(); }); } else { $('.nav li').unbind('mouseenter mouseleave'); $('.nav .v1').click(function () { if ($(this).siblings('dl').length) { $(this).siblings('dl').stop().slideToggle(); return false; } }); } } myNav(); $('.tabs li').hover(function () { let target = $(this).data('target'); $(this).addClass('active').siblings().removeClass('active'); $(target).addClass('show').siblings().removeClass('show'); }, function () { }) }); //banner全屏 if ($(window).width() > 768) { $('.banner').height($(window).height()); } $video = $('.banner video'); $video.each(function () { let vwidth = $(window).height() * 16 / 9; //console.log($(window).height(), vwidth, $(window).width()); if (vwidth > $(window).width()) { $(this).css({ 'margin-left': -((vwidth - $(window).width()) / 2) }); } }) $(window).resize(function () { if ($(window).width() > 768) { $('.banner').height($(window).height()); } $video = $('.banner video'); $video.each(function () { let vwidth = $(window).height() * 16 / 9; //console.log($(window).height(), vwidth, $(window).width()); if (vwidth > $(window).width()) { $(this).css({ 'margin-left': -((vwidth - $(window).width()) / 2) }); } }) })