4
A
回答
1
那麼,它是由按照什麼我從http://twitter.github.com/bootstrap/assets/js/bootstrap-dropdown.js聚集切換類名行..
如果有什麼事情,你必須正確地手動編輯下拉JS以支持動畫自定義設置打開和關閉菜單。這是非常可行的,我認爲這樣的事情會起作用:https://gist.github.com/3013002
警告這還沒有經過測試。
編輯:這會導致Bootstrap依賴jQuery.effects更多。只是一個頭。
1
如果有人需要 - 檢查我的解決方案。下面修改了bootstrap-dropdown.js。 而不是切換顯示:無顯示:塊,我使用slideToggle。並且爲了引導CSS不要中斷我已經將打開的菜單項的類從「打開」更改爲「打開」。
/* ============================================================
* bootstrap-dropdown.js v2.3.0
* http://twitter.github.com/bootstrap/javascript.html#dropdowns
* ============================================================
* Copyright 2012 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ============================================================ */
!function ($) {
"use strict"; // jshint ;_;
/* DROPDOWN CLASS DEFINITION
* ========================= */
var toggle = '[data-toggle=dropdown]'
, Dropdown = function (element) {
var $el = $(element).on('click.dropdown.data-api', this.toggle)
$('html').on('click.dropdown.data-api', function() {
$(toggle).next('ul').slideToggle();
$el.parent().removeClass('opened')
})
}
Dropdown.prototype = {
constructor: Dropdown
, toggle: function (e) {
var $this = $(this)
, $parent
, isActive
if ($this.is('.disabled, :disabled')) return
$parent = getParent($this)
isActive = $parent.hasClass('opened')
clearMenus()
if (!isActive) {
$(this).next('ul').slideToggle();
$parent.toggleClass('opened')
}
$this.focus()
return false
}
, keydown: function (e) {
var $this
, $items
, $active
, $parent
, isActive
, index
if (!/(38|40|27)/.test(e.keyCode)) return
$this = $(this)
e.preventDefault()
e.stopPropagation()
if ($this.is('.disabled, :disabled')) return
$parent = getParent($this)
isActive = $parent.hasClass('opened')
if (!isActive || (isActive && e.keyCode == 27)) {
if (e.which == 27) $parent.find(toggle).focus()
return $this.click()
}
$items = $('[role=menu] li:not(.divider):visible a', $parent)
if (!$items.length) return
index = $items.index($items.filter(':focus'))
if (e.keyCode == 38 && index > 0) index-- // up
if (e.keyCode == 40 && index < $items.length - 1) index++ // down
if (!~index) index = 0
$items
.eq(index)
.focus()
}
}
function clearMenus() {
$(toggle).each(function() {
if (getParent($(this)).hasClass('opened')) {
$(this).next('ul').slideToggle();
getParent($(this)).removeClass('opened');
}
})
}
function getParent($this) {
var selector = $this.attr('data-target')
, $parent
if (!selector) {
selector = $this.attr('href')
selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
}
$parent = selector && $(selector)
if (!$parent || !$parent.length) $parent = $this.parent()
return $parent
}
/* DROPDOWN PLUGIN DEFINITION
* ========================== */
var old = $.fn.dropdown
$.fn.dropdown = function (option) {
return this.each(function() {
var $this = $(this)
, data = $this.data('dropdown')
if (!data) $this.data('dropdown', (data = new Dropdown(this)))
if (typeof option == 'string') data[option].call($this)
})
}
$.fn.dropdown.Constructor = Dropdown
/* DROPDOWN NO CONFLICT
* ==================== */
$.fn.dropdown.noConflict = function() {
$.fn.dropdown = old
return this
}
/* APPLY TO STANDARD DROPDOWN ELEMENTS
* =================================== */
$(document)
.on('click.dropdown.data-api', clearMenus)
.on('click.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
.on('.dropdown-menu', function (e) { e.stopPropagation() })
.on('click.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
.on('keydown.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
}(window.jQuery);
0
我沒有檢查,看看這是否與舊版本的引導,但隨着V3,您可以扎入被點擊下拉菜單切換時被解僱的事件。這樣你就不必編輯源代碼。
$(document).on("hide.bs.dropdown", ".dropdown", function (event) {
$(event.target).find(">.dropdown-menu:first").slideUp();
});
$(document).on("show.bs.dropdown", ".dropdown", function (event) {
$(event.target).find(">.dropdown-menu:first").slideDown();
});
相關問題
- 1. 順利jQuery幻燈片
- 2. 下拉幻燈片形式
- 3. 幻燈片導航
- 4. 滑動事件以在觸摸設備上導航幻燈片
- 5. 順利滑下動畫
- 6. 衝突的Javascript下拉和幻燈片
- 7. Bootstrap |破碎的事件,下拉菜單和幻燈片
- 8. 在幻燈片中移動光滑的導航箭頭
- 9. 如何做Bootstrap導航下拉菜單?
- 10. 幻燈片導航菜單
- 11. IOS PowerPoint幻燈片導航
- 12. 標題導航幻燈片
- 13. jQuery導航幻燈片
- 14. swipebox.js - 以相反順序滑動或導航幻燈片不可能?
- 15. 如何使用jQuery滑塊設置下一張幻燈片
- 16. Bootstrap導航欄下拉不滾動
- 17. C#下拉幻燈片形式
- 18. 如何滑動到滑塊上的特定幻燈片
- 19. 如何讓幻燈片自行滑動?
- 20. 幻燈片溢出,而滑動和向下滑動繼續使用
- 21. 如何爲幻燈片添加幻燈片向上/向下效果?
- 22. 在幻燈片導航中選擇圖像幻燈片
- 23. jQuery的幻燈片上/下都
- 24. jQuery圖片使用導航向上和向下滑動
- 25. jquery淡入,向下滑動,下一張圖片,重置幻燈片
- 26. 使離子幻燈片垂直滑動
- 27. 如何在幻燈片上自動更改幻燈片
- 28. 如何使現有幻燈片的自動幻燈片
- 29. jQuery的導航向上滾動的幻燈片,不工作
- 30. Jssor滑塊 - 響應幻燈片與固定大小的導航
感謝它幫助 –
太棒了!很高興我能幫上忙。 – jackyalcine