【发布时间】:2021-02-17 23:30:23
【问题描述】:
我用 Angular 11 和 bootstrap 和 bootstrap-icons 实现了一个简单的按钮。 当我路由显示按钮的页面时,按钮会立即加载。但只有在大约 500 毫秒后,图标才会弹出并且看起来像是在闪烁。
我怎样才能摆脱这种行为?它也会出现在列表视图等中的图标上。
<button
type="button"
class="btn btn-secondary float-right w-25 mb-3"
>
<svg width="24" height="24">
<use xlink:href="assets/bootstrap-icons/bootstrap-icons.svg#plus" />
</svg>
Test
</button>
【问题讨论】:
标签: css angular bootstrap-4 bootstrap-icons