に関連する2つのボタン.square
を作成しました。
ボタンを1つクリックすると.square
:関連<div>
が表示され、もう1つが消滅します。
事である:私は(bellow_div
)の後に右表示
コンテンツ#c1
又は#c2
の高さが変化しているときに奇妙な遷移をしています。
高さを変えるときに、bellow_div
と#c1
または#c2
をスムーズに上下にスライドさせる方法はありますか?は、サイズが変更されたときにスムーズに上下にスライドします
$(function(){ // DOM ready shorthand
$('.square:first').css('color', 'red');
$(".square").on("click", function() {
var id= $(this).attr("contentId");
$('.square').css('color', ' #ccc');
$(this).css('color','red');
$('#details p').fadeOut('fast', function() {
$(this).html($("#" + id).html()).fadeIn();
});
});
});
#details{
width:100%;
background:#999;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="square" contentId="c1">Prochain évenement</div>
<div class="square" contentId="c2">Editorial</div>
<div id="details">
<p>
Jeudi 20 Mars<br>
20h30<br>
Upcoming eventsSed si ille hac tam eximia fortuna propter utilitatem rei publicae frui non properat, ut omnia illa conficiat, quid ego, senator, facere debeo, quem, etiamsi ille aliud vellet, rei publicae consulere oporteret?
</p></div>
<div style="display: none" id="c1">
Jeudi 20 Mars<br>
20h30<br>
Upcoming eventsSed si ille hac tam eximia fortuna propter utilitatem rei publicae frui non properat, ut omnia illa conficiat, quid ego, senator, facere debeo, quem, etiamsi ille aliud vellet, rei publicae consulere oporteret?
</div>
<div style="display: none" id="c2">
Saison 2016—2017
</div>
<div class="bellow_div">Here is a text</div>
こんにちは@Wowsk、助けてくれてありがとう。エフェクトはほぼ完璧です。灰色のdivを完全に閉じるのを避け、次のdivが表示されるまでスライドさせる方法はありませんか? – Yagayente
シナリオに関しては、次のようになります。1 - fadeOut text; 2 - 次のdivの高さまでスライドします。 3 - fadeIn次のテキスト – Yagayente