如何在matTooltip中添加箭头?

时间:2018-08-12 10:15:04

标签: javascript angular angular-material tooltip

我正在尝试在matTooltip上添加箭头,有任何方法可以在matTooltip上添加箭头。

<button mat-raised-button
        matTooltip="Info about the action"
        aria-label="Button that displays a tooltip when focused or hovered over">   
        Action 
</button>

2 个答案:

答案 0 :(得分:2)

在使用Material Design之后,角度工具提示组件中不包括箭头。在这里,您可以查看如何使用工具提示https://material.io/components/tooltips/

答案 1 :(得分:1)

您需要覆盖材质样式。并在伪元素之前/之后添加箭头。例如,如果您需要使用左边框和箭头来设置工具提示的样式,只需执行类似的操作

.mat-tooltip {
    // to make possible place arrow pseudo element outside tooltip with absolute positioning
    overflow: visible;
    position: relative;
    &.right {
        border-left: 6px solid red;
        margin-left: 5px;
        &::before {
            position: absolute;
            content: '';
            display: inline-block;
            background-color: red;
            clip-path: polygon(50% 0, 0 50%, 50% 100%);
            left: -12px;
            width: 15px;
            height: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
    }
}