在这个网页上,我有一组按钮,点击后,下面的部分将展开以显示更多内容。页面说明淡出,所选部分的内容淡入。
我目前遇到的问题是文本随着部分的展开而移动(单击“毕业”按钮以查看我在说什么)。这是我用来让一切发生的jQuery(完整的脚本文件在这里):
function expandTix(newHeight) {
$('#tixcontainer').animate({
height: newHeight + 'px'
});
}
$('.gradbutton').click(function(){
$('.startinfo').fadeOut();
$('.gradinfo').fadeIn();
expandTix(300);
});
和 HTML:
<div id="tixcontainer">
<div class="tixcontent startinfo">
Select a ticket type to begin ordering your graduation tickets.
</div>
<div class="tixinfo hidden gradinfo">
You selected "Graduate"
</div>
</div>
我怎样才能使文本在动画时不会跳来跳去?
提前致谢!