【问题标题】:Change amount of time Bootstrap tooltips display / fade in and out更改引导工具提示显示/淡入淡出的时间量
【发布时间】:2014-09-15 10:25:20
【问题描述】:

我正在使用 Twitter Bootstrap 添加工具提示,我可以添加一个属性来确定工具提示显示多长时间/淡入和淡出需要多长时间?

<span class="myClass" data-tooltip="{{myData}}" data-tooltip-placement="right"></span>

干杯

【问题讨论】:

    标签: twitter-bootstrap tooltip angular-ui-bootstrap


    【解决方案1】:

    Bootstrap 使用 .fade 类来更改工具提示的不透明度。在 CSS 文件中是这样的:

    .fade {
        opacity:0;
        -webkit-transition: opacity .15s linear;
        -o-transition: opacity .15s linear;
        transition: opacity .15s linear;
    }
    

    只需将过渡属性的.15s 更改为您想要的持续时间。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2015-10-27
      • 2013-06-25
      • 2020-10-13
      • 2016-06-01
      • 2011-10-29
      • 2013-09-26
      • 2012-07-24
      • 1970-01-01
      相关资源
      最近更新 更多