/* * ============================================================================ * 版权所有 2014 成都爱诚科技有限公司,并保留所有权利 * 网站地址: http://www.ac57.com * ---------------------------------------------------------------------------- * 这不是一个自由软件!禁止任何形式的拷贝、修改、发布 * ============================================================================ * # author: kinglong # * # filename: ready.js 2014-05-09 09:50:33 kinglong # */ /*****************************************************************************/ $(document).ready(function(){ //导航 $(".menu > ul > li").hover( function(){ $(this).addclass("hover").siblings().removeclass("hover"); $(".menu > ul > li > div").css({display:'none'}); $('div',this).css({display:'table'}); if($(this).index()>3){ $("div",this).css({ 'margin-left' : '-483px' }); } }, function(){ $(this).removeclass("hover"); $('div',this).css({display:'none'}); } ); //内页banner标题 var banb=$(".banner-within div li"); var top=( 340 - banb.height() ) / 2; banb.css('top',top); });