ChatGPT解决这个技术问题 Extra ChatGPT

使引导弹出框在悬停而不是单击时出现/消失

我正在使用 Bootstrap 的 Popover 构建一个网站,但我不知道如何使弹出框出现在悬停而不是点击时。

我想做的就是当有人将鼠标悬停在链接上而不是单击它时出现一个弹出框,并且当他们离开时弹出框消失。文档说可以使用 data 属性或 jquery。我宁愿用 jquery 来做,因为我有多个弹出窗口。

提示:悬停在触摸设备上很糟糕。如果您想确保触摸屏的可用性,请不要将功能绑定到悬停。

t
totymedli

将弹出框的 trigger 选项设置为 hover 而不是 click,即 default 选项。

这可以使用标记中的任一 data-* 属性来完成:

<a id="popover" data-trigger="hover">Popover</a>

或使用初始化选项:

$("#popover").popover({ trigger: "hover" });

这是一个DEMO


谢谢回复。如何为此代码设置触发选项? <script> $(function () { $("#popover").popover(); }); </script>
@Jake:使用 $("#popover").popover({ trigger: "hover" });
谢谢!出于某种原因,我需要同时实现数据触发器和 JS 初始化。
谁能帮我理解哪个是更好的选择,JS 初始化或数据属性?即使我使用数据属性,我仍然必须调用 $("#popover").popover();来自我的 JavaScript。
@Bailey 这将取决于您的编码规则是什么以及您是否使用任何特定的编码标准,然后是个人喜好。看看这两个,我更喜欢在 popover() 函数中定位触发器选项。对我来说似乎更具可读性。
C
Calexo

我想为可访问性添加它,我认为您应该添加焦点触发器:

$("#popover").popover({ trigger: "hover focus" });


没有点击这个请求 - 看看这个帖子的标题
S
Sahil Patel

如果您还想悬停弹出框本身,则必须使用手动触发器。

这就是我想出的:

function enableThumbPopover() {
    var counter;

    $('.thumbcontainer').popover({
        trigger: 'manual',
        animation: false,
        html: true,
        title: function () {
            return $(this).parent().find('.thumbPopover > .title').html();
        },
        content: function () {
            return $(this).parent().find('.thumbPopover > .body').html();
        },
        container: 'body',
        placement: 'auto'
    }).on("mouseenter",function () {
        var _this = this; // thumbcontainer

        console.log('thumbcontainer mouseenter')
        // clear the counter
        clearTimeout(counter);
        // Close all other Popovers
        $('.thumbcontainer').not(_this).popover('hide');

        // start new timeout to show popover
        counter = setTimeout(function(){
            if($(_this).is(':hover'))
            {
                $(_this).popover("show");
            }
            $(".popover").on("mouseleave", function () {
                $('.thumbcontainer').popover('hide');
            });
        }, 400);

    }).on("mouseleave", function () {
        var _this = this;

        setTimeout(function () {
            if (!$(".popover:hover").length) {
                if(!$(_this).is(':hover')) // change $(this) to $(_this) 
                {
                    $(_this).popover('hide');
                }
            }
        }, 200);
    });
}

你能分享你使用的HTML吗?也许是太久以前了。我发现您的答案是最好的答案之一,特别是因为当您将鼠标悬停在弹出框本身上时弹出框保持打开状态。但是我无法确定将“thumbPopover”和“thumbcontainer”类放在哪里。
V
VforVitamin

您描述的功能可以使用 Bootstrap 工具提示轻松实现。

<button id="example1" data-toggle="tooltip">Tooltip on left</button>

然后为元素调用 tooltip() 函数。

$('#example1').tooltip();

http://getbootstrap.com/javascript/#tooltips


P
Peter

在尝试了其中一些答案并发现它们不能很好地使用多个链接(例如,接受的答案需要为您拥有的每个链接提供一行 jquery)之后,我遇到了一种需要最少代码才能工作的方式,并且它似乎也可以完美运行,至少在 Chrome 上是这样。

您添加此行以激活它:

$('[data-toggle="popover"]').popover();

这些设置到您的锚链接:

data-toggle="popover" data-trigger="hover"

See it in action here,我使用与接受的答案相同的导入,因此它应该适用于旧项目。


关注公众号,不定期副业成功案例分享
关注公众号

不定期副业成功案例分享

领先一步获取最新的外包任务吗?

立即订阅