0

マウスがボックス(「titulo」)の上にあるときに何かを行うコードを実行していますが、マウスが文字の上にあると効果がオフになります。コードは上にあり、サイトはここにあります:

http://www.feijaodesign.com/toga/

効果のあるボックスは、「PROMOÇOES」というテキストのみです。

ありがとう仲間。

$(".titulo").hover(function(){
  $(".titulo").animate({
    top: "0px",
    height: "100px"
  }, 100 );
});

$(".titulo").hover(function(){
  $(".titulo").animate({
    top: "55px",
    height: "45px"
  }, 100 );
});
4

1 に答える 1

1

hover()メソッドを別の方法で使用する必要があります。

$(".titulo").hover(function() {
    $(this).animate({
        top: "0px",
        height: "100px"
    }, 100);
}, function() {
    $(this).animate({
        top: "55px",
        height: "45px"
    }, 100);
});
于 2012-12-25T23:37:56.427 に答える