将HTML表格放入图标内的工具提示中

问题描述 投票:1回答:1

我一直试图将表格放在图标内的工具提示中,主要目的是创建一个小图例,使用黄色/橙色使用此colors来解释这些icon的含义。

到目前为止,我只设法使图标出现,但没有成功。到目前为止,我在“颜色”列中创建的表格仅显示了颜色的名称,但我想显示一个涂有该颜色的小正方形,该正方形代表了红色,蓝色和红色。正方形代表蓝色...等等。

这是我编写的代码:

<style>
    .tooltip {
        position: relative;
        display: inline-block;
        border-bottom: 1px dotted black;
    }

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 180px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -60px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
</style>
<a>
   <span class="tooltip">
      <i class="fas fa-info-circle"></i>
      <table class="tooltiptext">
         <thead>
            <tr>
               <th>Color</th>
               <th>Significado</th>
            <tr>
         </thead>
         <tbody>
            <tr>
               <th>Gris</th>
               <th>Comprado</th>
            </tr>
            <tr>
               <th>Verde</th>
               <th>Emergencia</th>
            </tr>
            <tr>
               <th>Verde</th>
               <th>Urgencia</th>
            </tr>
            <tr>
               <th>Verde</th>
               <th>Urgencia Menor</th>
            </tr>
            <tr>
               <th>Verde</th>
               <th>Sin Urgencia</th>
            </tr>
         </tbody>
      </table>
   </span>
</a>             

编辑:这是其中的一点snippet

html css twitter-bootstrap html-table tooltip
1个回答
0
投票

我能够使用bootstrap和javascript做到这一点,我使用js是为了避免visual studio出现一些问题,因为编译器不允许我将class属性放在bootstrap的工具提示的title属性内。

这里是代码:

<a id="information" data-toggle="tooltip"  data-html="true">
   <span><i class="fas fa-info-circle" style="color: #ff9900"></i></span>
</a>
function info() {   

    var infoTooltip = document.getElementById("information");

    infoTooltip.setAttribute("title",
        `
        <table>
            <thead>
                <tr>
                    <th>Colores</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <th><span class="badge badge-danger px-2">Emergencia</span></th>
                </tr>
                <tr>
                    <th><span class="badge badge-warning px-2">Urgencia</span></th>
                </tr>
                <tr>
                    <th><span class="badge badge-success px-2">Urgencia Menor</span></th>
                </tr>
                <tr>
                    <th><span class="badge badge-primary px-2">Sin Urgencia</span></th>
                </tr>
                <tr>
                    <th><span class="badge badge-light px-2">Comprado</span></th>
                </tr>
            </tbody>
        </table>
        `
    );
}

这是outcome

© www.soinside.com 2019 - 2024. All rights reserved.