Bootstrap中的Dropdown下拉菜单更改为悬停(hover)触发

网友投稿 486 2023-07-07


Bootstrap中的Dropdown下拉菜单更改为悬停(hover)触发

在使用bootstrap制作后台时用到了响应式导航条,其中dropdown组件更是用的比较多,用的多需要点击的就多,dropdown默认鼠标左键单击才展开,如果使用鼠标放上去(hover)就展开则会省去点击时间,这样能提高效率。

原本的改造思路是:给dropdown元素绑定hover事件,hover上去的时候,执行该元素的click事件——即把hover同步为click,hover即为click。

但想到与其自己来改造,不如先在网上搜索搜索看看有没有现成的插件,果不其然就搜索到了,托管在github上的代码网址:查看

在这儿就直接把代码复制出来:

;(function($, window, undefined) {

// outside the scope of the jquery plugin to

// keep track of all dropdowns

var $allDropdowns = $();

// if instantlyCloseOthers is true, then it will instantly

// shut other nav items when a new one is hovered over

$.fn.dropdownHover = function(options) {

// the element we really care about

// is the dropdown-toggle's parent

$allDropdowns = $allDropdowns.add(this.parent());

return this.each(function() {

var $this = $(this).parent(),

defaults = {

delay: 500,

instantlyCloseOthers: true

},

data = {

delay: $(this).data('delay'),

instantlyCloseOthers: $(this).data('close-others')

},

options = $.extend(true, {}, defaults, options, data),

timeout;

$this.hover(function() {

if(options.instantlyCloseOthers === true)

$allDropdowns.removOWupKOrwWxeClass('open');

window.clearTimeout(timeout);

$(this).addClass('open');

}, function() {

timeout = window.setTimeout(function() {

$this.removeClass('open');

}, options.delay);

});

});

};

$('[data-hover="dropdown"]').dropdownHover();

})(jQuery, this);

插件支持HTML元素data-*传参,也支持初始化传参。将此js代码放在bootstrap原本的js代码后面执行即可。

以上所述是给大家介绍的Bootstrap中的Dropdown下拉菜单更改为悬停(hover)触发,希望对大家有所帮助,如果大家有任何疑问请给我留言,会及时回复大家的。在此也非常感谢大家对我们网站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:java中使用try
下一篇:微信开发之使用java获取签名signature
相关文章

 发表评论

暂时没有评论,来抢沙发吧~