2014-01-23 31 views

回答

2

您必須使用this並需要在circle-cont而不是container上進行懸停。

$(".circle-cont").hover(function(){ 
    $(this).find(".circle-hide").animate({height: '0px'}); 
    },function(){ 
    $(this).find(".circle-hide").animate({height: '95px'}); 
    }); 

JSFIDDLE DEMO

+0

謝謝@krishna。這解決了問題。 :) – Sarvagnya