我从官方文档中读到,Glyphicons已从Bootstrap 4中删除。
今天,在我寻找实施checbox按钮的过程中,我发现了一个我非常欣赏的片段:
问题是此版本适用于Bootstrap 3.0,其中支持Glyph。
所以我有2个问题:
答案 0 :(得分:2)
1 - 对于Glyphicons来说,它是一个很好的选择吗?或者有一种方法可以使用它们吗?
最佳替代方案恕我直言:http://fontawesome.io/icons/
2 - 我如何更改上面的html和js片段以使其工作wuth Bootstrap 4?
jQuery Checkbox Buttons - Bootstrap 4
您需要更改JS:
settings = {
on: {
icon: 'fa fa-square-o'
},
off: {
icon: 'fa fa-check-square-o'
}
};
现在不推荐使用css类.hidden
,因此Bootstrap建议改为使用style="display: none"
。
答案 1 :(得分:0)
我同意@nerijunior Font Awesome图标是最好的选择,下面是经过测试的方法:
要使用“真棒字体”图标,请在HTML页面中添加以下内容(无需下载或安装),请参见以下示例:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1>My Icons <i class="fas fa-heart"></i></h1>
<p>An icon along with some text: <i class="fas fa-thumbs-up"></i></p>
</div>
<div class="container">
<p>Others:</p>
<i class="fas fa-cloud"></i>
<i class="fas fa-coffee"></i>
<i class="fas fa-car"></i>
<i class="fas fa-file"></i>
<i class="fas fa-bars"></i>
</div>
</body>
</html>