淡入和淡出链接

时间:2013-09-16 19:47:32

标签: jquery hyperlink fadein fadeout jquery-hover

请允许任何人在这个简单的脚本中帮助我......

<script>
$(".offr-list-desc-anch").hide();
$(function () {
    $(".grey-shadow").hover(function () {
        $(".offr-list-desc-anch").stop().fadeIn()
    }, function () {
        $(".offr-list-desc-anch").stop().fadeOut();
    });
});
</script>

我使用它来淡入和淡出我的链接但是当我悬停一个链接时,效果会发生在所有其他链接上...我只想在悬停的链接上生效..

这是我的HTML

<a href="#" class="offr-list-itm grey-shadow">
    <div class="offr-list-desc-txt"> 
    <img width="223" height="159" border="0" class="grey-shadow" src="images/sportive_suit.jpg">
      <div class="offr-list-desc-anch" >
        <div class="offr-list-item-detls">
          <div class="price"><span class="price-value">200</span><span>LE</span></div>
          <div class="discount-box">
            <div class="off"><span class="price-detalis-tit">Discount</span> <span class="save-currency">50 <span class="save-currency-symbol">%</span> </span> </div>
            <div class="save"> <span class="price-detalis-tit">You Save</span> <span class="save-currency"> 200 <span class="save-currency-symbol"> LE </span></span> </div>
          </div>
        </div>
        <p class="more-offers-unitit"> L.E 200 Instead of L.E 400 for 1 Month of Self Defense Classes from Circle Aikido</p>
      </div>
   <script>
  $(".offr-list-desc-anch").hide();
  $(function(){
      $(".grey-shadow").stop().hover(function(){

          $(".offr-list-desc-anch").fadeIn()
          },function(){$(".offr-list-desc-anch").stop().fadeOut();
              });

              return false;

      });
  </script>
 </div>
</a>

2 个答案:

答案 0 :(得分:1)

您需要指定特定于当前悬停元素的目标,以便它不会影响其他元素。所以试试这个:

$(function () {
    $(".offr-list-desc-anch").hide();
    $(".grey-shadow").hover(function () {
        $(this).find(".offr-list-desc-anch").stop().fadeToggle(); //find the element specific to hovered anchor tag element
    });
});

<强> Fiddle

也不要将脚本包装在div元素中,你不需要这样做。

答案 1 :(得分:0)

尝试

$(".grey-shadow").hover(function () {
  $(this).next().stop().fadeIn()
}, function () {
  $(this).next().stop().fadeOut();
});

我们的想法是将您的悬停点用作参考而不是整个DOM。