/** * Header菜单切换效果 */ $('.header-nav > .arrow').on('click', function() { var _headerNav = $('.header-nav-list') if (_headerNav.height() <= 14) { $(this).addClass('rotate') var _height = _headerNav.find('ul').outerHeight() _headerNav.animate({ 'height': _height }) } else { $(this).removeClass('rotate') _headerNav.animate({ 'height': 14 }) } }) /** * 搜索回车 */ $('#search-input').bind('keypress', function(event) { if (event.keyCode == "13") { window.location.href="/tfbsdi?lfzxpse=" + $('#search-input').val() } }) /** * 置顶 */ $(window).scroll(function() { if ($(this).scrollTop() > 500) { $(".top").show() } else { $(".top").hide() } }) $(".top").click(function(){ $('html,body').animate({scrollTop:'0px'},'slow'); }); /** * 赛事头部 */ $(".live-match-content .live-table:eq(0) thead tr").css("background","linear-gradient(0deg, #B92D32 0%, #992D32 100%)") if( $(".live-box").height() > 3000){ $(".bg2").show() } /** * 赛事头部 */ $(".embedded").click(function(){ var url=$(this).attr("data-url"); $("#live").attr("src",url) $(".active").removeClass("active") $(this).addClass("active") })