我正在使用 angular-ui 引导轮播,并想用图像更改左右导航链接。似乎在 tpl 中它们被硬编码为 ‹ 和 ›
有没有人有任何建议将这些更改为图像而不更改实际的 angular-ui 引导文件?我想将它保存在库中,并且不想在每个版本发布后更改它。
我唯一的解决方案是在 CSS 中使这些尖括号的控制变得超级小,这样它们就无法被看到并放置图像。
.carousel-control {
font-size: 1px
}
.carousel-control.left, carousel-control.right {
background: url(/path/to/[image-here].png) no-repeat !important;
}
有更好的解决方案吗?