マウスがボックス(「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 );
});