我正在使用fittext.js使文本响应,并且我有 3 个 div 在单击相应链接时变得可见。div 包含 h2 标签。问题是,当我使用淡入效果时,文本不显示。请帮我
HTML
<a id="one" href="#">one</a>
<a id="two" href="#">two</a>
<a id="three" href="#">three</a>
<div class="one content">
<h2>one</h2>
</div>
<div class="two content">
<h2>two</h2>
</div>
<div class="three content">
<h2>three</h2>
</div>
css
.content {
background: red;
width: 500px;
height: 100px;
margin: 10px;
}
.content {
display: none;
}
h2 {
font-size: 60px;
height: 100%;
}
jQuery
$("a").click(function() {
var cls = $(this).attr('id')
$(".content").fadeOut(100);
$('.' + cls).delay(100).fadeIn(400);
return false;
});
jQuery("h2").fitText();