Uruchomienie zmian wysokości może być nieco trudne, głównie dlatego, że musisz znać wysokość do animacji. Jest to dodatkowo komplikowane przez dopełnienie animowanego elementu.
Oto co wymyśliłem:
użyj stylu takiego:
.slideup, .slidedown {
max-height: 0;
overflow-y: hidden;
-webkit-transition: max-height 0.8s ease-in-out;
-moz-transition: max-height 0.8s ease-in-out;
-o-transition: max-height 0.8s ease-in-out;
transition: max-height 0.8s ease-in-out;
}
.slidedown {
max-height: 60px ;
}
Umieść zawartość w innym kontenerze, tak aby przesuwany kontener nie miał dopełnienia / marginesów / obramowań:
<div id="Slider" class="slideup">
<div id="Actual">
Hello World Text
</div>
</div>
Następnie użyj skryptu (lub deklaratywnego znacznika w strukturach powiązań), aby wyzwolić klasy CSS.
$("#Trigger").click(function () {
$("#Slider").toggleClass("slidedown slideup");
});
Przykład tutaj:
http://plnkr.co/edit/uhChl94nLhrWCYVhRBUF?p=preview
Działa to dobrze w przypadku treści o stałym rozmiarze. Aby uzyskać bardziej ogólne rozwiązanie, możesz użyć kodu, aby obliczyć rozmiar elementu, gdy przejście jest aktywowane. Poniżej znajduje się wtyczka jQuery, która właśnie to robi:
$.fn.slideUpTransition = function() {
return this.each(function() {
var $el = $(this);
$el.css("max-height", "0");
$el.addClass("height-transition-hidden");
});
};
$.fn.slideDownTransition = function() {
return this.each(function() {
var $el = $(this);
$el.removeClass("height-transition-hidden");
$el.css("max-height", "none");
var height = $el.outerHeight();
$el.css("max-height", "0");
setTimeout(function() {
$el.css({
"max-height": height
});
}, 1);
});
};
które można uruchomić w ten sposób:
$ ("# Trigger"). Click (function () {
if ($("#SlideWrapper").hasClass("height-transition-hidden"))
$("#SlideWrapper").slideDownTransition();
else
$("#SlideWrapper").slideUpTransition();
});
przed takimi znacznikami:
<style>
#Actual {
background: silver;
color: White;
padding: 20px;
}
.height-transition {
-webkit-transition: max-height 0.5s ease-in-out;
-moz-transition: max-height 0.5s ease-in-out;
-o-transition: max-height 0.5s ease-in-out;
transition: max-height 0.5s ease-in-out;
overflow-y: hidden;
}
.height-transition-hidden {
max-height: 0;
}
</style>
<div id="SlideWrapper" class="height-transition height-transition-hidden">
<div id="Actual">
Your actual content to slide down goes here.
</div>
</div>
Przykład:
http://plnkr.co/edit/Wpcgjs3FS4ryrhQUAOcU?p=preview
Napisałem to niedawno w poście na blogu, jeśli jesteś zainteresowany bardziej szczegółami:
http://weblog.west-wind.com/posts/2014/Feb/22/Using-CSS-Transitions-to-SlideUp-and-SlideDown