如何创建这样的交互式提示(示例内部)

时间:2017-04-14 05:18:49

标签: jquery html css tooltip hints

enter image description here

嗨,我需要创建交互式提示。我尝试使用'%'创建相对块并在其中定位提示(绝对)。 。但我不能这样做。

是否有任何插件可以自行编写?

谢谢!

3 个答案:

答案 0 :(得分:1)

搜索工具提示。在这种情况下,它们真的可以派上用场。

网上有很多工具提示插件,其中之一是:http://qtip2.com/

尝试实施,播放和自定义它们。

http://qtip2.com/demos

上面的链接重定向到一个这样的页面,其中有一个图像,它可以让你专注于特定的图像部分,让工具提示弹出。

答案 1 :(得分:0)

试试这个:http://jsfiddle.net/mzd7maqq/114/

html的

<div id="container" class="col-lg-3">
        <div class="img-container">
            <div class="positioning">
                Some Text
            </div>
            <div class="positioningt">
                Some Text
           </div>
            <img src="http://placehold.it/300x200/eeeeee" />
        </div>
    </div>

.CSS

 .col-lg-3{
        width: 25%;
        min-width: 230px;
        float: left;
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px;
        background-color: #aaa;
        text-align: center;
    }
    .col-lg-3 img {
        max-width: 100%;
    }
    .img-container {
        display: inline-block;
        position: relative;
    }
    .positioning{
      position: absolute;
      left: 35px;
      top: 22px;
      background-color: red;
      color: white;
      padding: 4px;
      font-size: 17px;
      line-height: 18px;
    }
    .positioningt{
      position: absolute;
      left: 55px;
      top: 60px;
      background-color: red;
      color: white;
      padding: 4px;
      font-size: 17px;
      line-height: 18px;
    }

答案 2 :(得分:0)

  • 如果您使用的是bootstrap,可以通过此链接获取bootstrap工具提示bootstrap tooltip example
    • 如果您不使用bootstrap,那么您可以将此插件仅用于工具提示click here