Erweiterte Antwort, war meine erste Antwort, also entschuldigen Sie, wenn es vorher nicht genug Details gab.
Für Bootstrap 3.x bevorzuge ich persönlich CSS-Animationen und habe animate.css & zusammen mit den Bootstrap Dropdown Javascript Hooks verwendet. Obwohl es möglicherweise nicht genau den Effekt hat, den Sie suchen, ist es ein ziemlich flexibler Ansatz.
Schritt 1: Fügen Sie Ihrer Seite animate.css mit den Head-Tags hinzu:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.4.0/animate.min.css">
Schritt 2: Verwenden Sie den Standard-Bootstrap-HTML-Code für den Trigger:
<div class="dropdown">
<button type="button" data-toggle="dropdown">Dropdown trigger</button>
<ul class="dropdown-menu">
...
</ul>
</div>
Schritt 3: Fügen Sie dann dem Dropdrop-Menüelement 2 benutzerdefinierte Datenattribute hinzu. Daten-Dropdown-In für die In-Animation und Daten-Dropdown-Out für die Out-Animation. Dies können beliebige animate.css-Effekte wie fadeIn oder fadeOut sein
<ul class="dropdown-menu" data-dropdown-in="fadeIn" data-dropdown-out="fadeOut">
......
</ul>
Schritt 4: Fügen Sie als Nächstes das folgende Javascript hinzu, um die Datenattribute für Dropdown-In / Out-Daten zu lesen und auf die Hooks / Ereignisse der Bootstrap-Javascript-API ( http://getbootstrap.com/javascript/#dropdowns-events ) zu reagieren :
var dropdownSelectors = $('.dropdown, .dropup');
// Custom function to read dropdown data
// =========================
function dropdownEffectData(target) {
// @todo - page level global?
var effectInDefault = null,
effectOutDefault = null;
var dropdown = $(target),
dropdownMenu = $('.dropdown-menu', target);
var parentUl = dropdown.parents('ul.nav');
// If parent is ul.nav allow global effect settings
if (parentUl.size() > 0) {
effectInDefault = parentUl.data('dropdown-in') || null;
effectOutDefault = parentUl.data('dropdown-out') || null;
}
return {
target: target,
dropdown: dropdown,
dropdownMenu: dropdownMenu,
effectIn: dropdownMenu.data('dropdown-in') || effectInDefault,
effectOut: dropdownMenu.data('dropdown-out') || effectOutDefault,
};
}
// Custom function to start effect (in or out)
// =========================
function dropdownEffectStart(data, effectToStart) {
if (effectToStart) {
data.dropdown.addClass('dropdown-animating');
data.dropdownMenu.addClass('animated');
data.dropdownMenu.addClass(effectToStart);
}
}
// Custom function to read when animation is over
// =========================
function dropdownEffectEnd(data, callbackFunc) {
var animationEnd = 'webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend';
data.dropdown.one(animationEnd, function() {
data.dropdown.removeClass('dropdown-animating');
data.dropdownMenu.removeClass('animated');
data.dropdownMenu.removeClass(data.effectIn);
data.dropdownMenu.removeClass(data.effectOut);
// Custom callback option, used to remove open class in out effect
if(typeof callbackFunc == 'function'){
callbackFunc();
}
});
}
// Bootstrap API hooks
// =========================
dropdownSelectors.on({
"show.bs.dropdown": function () {
// On show, start in effect
var dropdown = dropdownEffectData(this);
dropdownEffectStart(dropdown, dropdown.effectIn);
},
"shown.bs.dropdown": function () {
// On shown, remove in effect once complete
var dropdown = dropdownEffectData(this);
if (dropdown.effectIn && dropdown.effectOut) {
dropdownEffectEnd(dropdown, function() {});
}
},
"hide.bs.dropdown": function(e) {
// On hide, start out effect
var dropdown = dropdownEffectData(this);
if (dropdown.effectOut) {
e.preventDefault();
dropdownEffectStart(dropdown, dropdown.effectOut);
dropdownEffectEnd(dropdown, function() {
dropdown.dropdown.removeClass('open');
});
}
},
});
Schritt 5 (optional): Wenn Sie die Animation beschleunigen oder ändern möchten, können Sie dies mit CSS wie folgt tun:
.dropdown-menu.animated {
/* Speed up animations */
-webkit-animation-duration: 0.55s;
animation-duration: 0.55s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
}
Schrieb einen Artikel mit mehr Details und einem Download, wenn jemand interessiert war: Artikel: http://bootbites.com/tutorials/bootstrap-dropdown-effects-animatecss
Ich hoffe, das ist hilfreich und dieser zweite Artikel hat die Detailgenauigkeit, die Tom benötigt