【问题标题】:what is this HTML/CSS element called?这个 HTML/CSS 元素叫什么?
【发布时间】:2018-11-19 03:06:03
【问题描述】:

我正在尝试学习 CSS,我在一个网站上遇到了这个元素,当您将鼠标悬停在 paypal 图标上时,会出现一个包含更多信息的下拉框。 (带下拉框的图片如下)

我想知道这个元素/属性的名称,以便了解更多信息。

任何帮助将不胜感激。

enter image description here

【问题讨论】:

    标签: html css css-transitions


    【解决方案1】:

    这些被称为tooltips。实现此功能的简单方法是向目标元素添加title 属性。将示例悬停在下面的 <img> 元素:

    <img src="https://hightechtele.com/media/ht.png" style="cursor:pointer;" title="High Tech Telecom" width="256">

    【讨论】:

    • 谢谢罗恩,这就是我要找的!
    【解决方案2】:

    这个元素/属性被称为“tooltip hover jquery”。

    你可以得到它

    https://getbootstrap.com/docs/4.0/components/tooltips/

    https://www.w3schools.com/howto/howto_css_tooltip.asp

    【讨论】:

    • 感谢 Manish 分享 jQuery 示例!
    【解决方案3】:

    它是 Bootstrap Popover 插件。

    这是工作示例:

     $(document).ready(function(){
        $('[data-toggle="popover"]').popover();   
    });
    

    Example link.

    你也可以阅读这个Here.

    【讨论】:

    • 感谢 Deepak 分享引导示例。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-04-08
    • 1970-01-01
    • 2022-06-17
    • 2010-11-10
    • 2022-08-12
    • 1970-01-01
    相关资源
    最近更新 更多