3
我正在使用Jquery FadeIn/FaeOut在我的頁面上顯示和隱藏內容。像這樣:Jquery淡入淡出動畫問題
$('.subnav_company').click(function(){
$('.aboutcontent').fadeOut('slow');
$('.company').fadeIn('slow');
});
我的問題是,由於在div「公司」被定位低於「.aboutcontent」當「公司」顯示其下方出現「.aboutcontent」直到div有完全隱藏起來,創建過渡效果不佳。
如何讓顯示和隱藏div平滑過渡?不要跳動。下面是HTML:
<div class="aboutcontent developers">
<h1>Developers</h1>
<h4>The developers are the best</h4>
<p> we have some great developers</p>
</div>
<!--End aboutcontent developers-->
<div class="aboutcontent company">
<h1>Company</h1>
<h4>offers a complete management tool . It's an easy to use and efficient way to manage and plan stuff. It allows people to communicate and get along.</h4>
</div>
<!--End aboutcontent company-->
尼克你又做到了!天才!!! – user342391 2010-09-08 14:12:28