1

我一定犯了一些明显的错误,但它似乎不起作用。

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/hoverIntent.js"></script>

<script type="text/javascript">

$(document).ready(function() {
$('.section').mouseover(function(){
  $('#nav2').fadeOut(0).animate({"height":"30px"}, 250);

         });


$('#section1').hoverIntent(navSelect('.interior','0px'));
$('#section2').hoverIntent(navSelect('.exterior','100px'));
$('#section3').hoverIntent(navSelect('.view','200px'));

function navSelect(section,selectorPosition){
 return function(evt){
  if ( $(section).is(':hidden')){
  $('.subSection').fadeOut(250);
  $(section).delay(250).fadeIn(250);
  $('#selector').animate({"left":selectorPosition},250);
  }}}


         });
</script>

</head>

.hover 工作得很好,但是当我使用 hoverIntent 时它绝对什么都不做。

4

1 回答 1

0

hoverIntent没有单一的输入/输出功能重载,从主页:

jQuery.hover()可以同时使用handlerInhandlerOut,/或/ 只是handlerIn。我的.hoverIntent()插件同时采用handlerInhandlerOut,/或/ 单个配置对象。它的设计目的不是只接受一个 handlerIn 之类的.hover()。下一个版本 (r6) 将更加灵活。

所以要得到你想要的,你要么必须通过两次相同的方法,就像这样:

$('#section1').hoverIntent(navSelect('.interior','0px'), navSelect('.interior','0px'));

或者,更简洁一点,您可以使用对象重载,并将其传递一次,但navSelect改为返回该对象,如下所示:

function navSelect(section,selectorPosition){
  var func = function(evt){
    if ( $(section).is(':hidden')) {
      $('.subSection').fadeOut(250);
      $(section).delay(250).fadeIn(250);
      $('#selector').animate({"left":selectorPosition},250);
    }
  }
  return { over: func, out: func };
}
于 2010-07-31T03:02:27.663 回答