// 禁止右键 document.oncontextmenu = function(){ event.returnValue = false; } // 或者直接返回整个事件 document.oncontextmenu = function(){ return false; } // 手机头部 $(function() { $(".header2 .nav-btn").on('click', function() { var _this = $(this); if (!$(this).hasClass('hover')) { $(this).addClass('hover'); $(this).children('.line1').stop(true, true).transition({ rotate: 45 }, 300); $(this).children('.line2').stop(true, true).fadeOut(300); $(this).children('.line3').stop(true, true).transition({ rotate: -45 }, 300, function() { _this.addClass('active'); }); $(this).parent(".main-wrap").siblings('.sub-menu').stop().fadeIn(); $("header .list-cont").addClass('active'); $("body,html").stop(true, true).addClass('ovh-f'); $(".search-bg1").stop(true, true).fadeIn(); $(".header2").addClass('active'); $(".sub-menu li").addClass("animate"); } else { $(this).removeClass('hover'); $(this).removeClass('active'); $(this).children('.line1').stop(true, true).transition({ rotate: 0 }, 300); $(this).children('.line2').stop(true, true).fadeIn(300); $(this).children('.line3').stop(true, true).transition({ rotate: 0 }, 300); $(this).parent(".main-wrap").siblings('.sub-menu').stop().fadeOut(); $("header .list-cont").removeClass('active'); $("body,html").stop(true, true).removeClass('ovh-f'); $(".search-bg1").stop(true, true).fadeOut(); $(".header2").removeClass('active'); $(".sub-menu li").removeClass("animate"); } }); $(".header2 .sub-menu .sec-list a").on('click', function() { $(".header2 .nav-btn").removeClass('hover'); $(".header2 .nav-btn").removeClass('active'); $(".header2 .nav-btn").children('.line1').stop(true, true).transition({ rotate: 0 }, 300); $(".header2 .nav-btn").children('.line2').stop(true, true).fadeIn(300); $(".header2 .nav-btn").children('.line3').stop(true, true).transition({ rotate: 0 }, 300); $(".header2 .nav-btn").parent(".main-wrap").siblings('.sub-menu').stop().fadeOut(); $("header .list-cont").removeClass('active'); $("body,html").stop(true, true).removeClass('ovh-f'); $(".search-bg1").stop(true, true).fadeOut(); $(".header2").removeClass('active'); $(".sub-menu li").removeClass("animate"); }); }); $(".header2 .sub-menu .sub-tit").on('click', function() { if ($(this).siblings('.sec-list').is(':hidden')) { $(this).addClass('on'); $(this).siblings('.sec-list').stop().slideDown(); $(this).parent().siblings('li').children('.sec-list').stop().slideUp().siblings('.tit').removeClass( 'on'); } else { $(this).removeClass('on'); $(this).siblings('.sec-list').stop().slideUp(); } }); //导航下拉 $(document).ready(function() { $("header .nav ul li").hover(function() { $(this).children(".xl").stop(true, false).slideDown(); }, function() { $(this).children(".xl").stop(true, false).slideUp("fast"); }); $("header .nav ul li").hover(function() { $(this).children(".header-xl").stop(true, false).slideDown(); }, function() { $(this).children(".header-xl").stop(true, false).slideUp("fast"); }); }); //头部二维码 $(document).ready(function() { $("header .top .layout .h_right .wx").hover(function() { $(this).children(".ewm").stop(true, false).slideDown(); }, function() { $(this).children(".ewm").stop(true, false).slideUp("fast"); }); }); //头部语言切换 $(document).ready(function() { $("header .top .layout .h_right .lang").hover(function() { $(this).children(".yuyan").stop(true, false).slideDown(); }, function() { $(this).children(".yuyan").stop(true, false).slideUp("fast"); }); }); //吸顶 $(function() { $(window).scroll(function() { var scroH = $(this).scrollTop(); if (scroH >= 1) { $("header").addClass("fix"); } else { $("header").removeClass("fix"); } }) }); // 右侧导航 $(function() { $(window).scroll(function() { var scroH = $(this).scrollTop(); if (scroH >= 200) { $('.r-nav').addClass('active'); } else { $('.r-nav').removeClass('active'); } }) }); // 点击置顶 $(function() { $('.r-nav a:nth-child(4)').click(function() { $('body,html').animate({ scrollTop: 0 }, 500); $('.r-nav').removeClass('active'); return false; }); }); //友情链接 $(document).ready(function() { $("footer .col-m .col-l .links").hover(function() { $(this).children("ul").stop(true, false).slideDown(); }, function() { $(this).children("ul").stop(true, false).slideUp("fast"); }); }); // 模态框 $(function() { var cModalVideo; $('.j-modal-open').click(function() { var $obj = $(this).attr('data-type'); $('.c-modal').addClass('on').children().addClass('on'); $('.c-modal-dialog').children('.' + $obj).show().siblings('.content').hide(); if ($obj == 'video') { // 添加视频 $('.c-modal .video').append( ''); // 定义视频 cModalVideo = videojs('cModalVideo', { muted: false, controls: true, loop: false, autoplay: true }); } else if ($obj == 'imgshow') { $('.c-modal .imgshow').html(''); $('.c-modal .imgshow').append(''); } else if ($obj == 'form') { $('.committee-form input[name="type"]').val($(this).attr('data-join')); } return false; }); $('.j-modal-off').click(function() { $('.c-modal').children().removeClass('on'); setTimeout(function() { if (cModalVideo) { cModalVideo.dispose(); }; $('.c-modal .video').html(''); $('.c-modal').removeClass('on') $('.c-modal-dialog').children('.content').hide(); }, 300); }); // 移除点击事件 $('.prohibit .j-modal-open').unbind(); }); // END 模态框 $(document).ready(function() { $(".p-sx .sx-list dl").hover(function() { $(this).children("dd").stop(true, false).slideDown(); }, function() { $(this).children("dd").stop(true, false).slideUp("fast"); }); });