Bootstrap 4不再支持Glyphicon

xxls0lw8  于 2023-06-20  发布在  Bootstrap
关注(0)|答案(2)|浏览(149)

我从官方文档中读到,Glyphicons从Bootstrap 4中删除了。
今天,在我搜索实现复选框按钮时,我发现了一个我非常欣赏的片段:
Snippet for Checkbox 3.0
问题是,这个版本是Bootstrap 3.0,其中Glyph还支持。
所以我有两个问题:
1.这是一个很好的替代Glyphicons?还是有办法使用它们?
1.如何更改上面的html和js片段,使其与Bootstrap 4一起使用?

2q5ifsrm

2q5ifsrm1#

1 -哪个是Glyphicons的好替代品?还是有办法使用它们?

最佳替代品IMHO:http://fontawesome.io/icons/

2 -如何更改上面的html和js片段,使其与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"

5jdjgkvh

5jdjgkvh2#

我同意@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>

来源:https://www.w3schools.com/bootstrap4/bootstrap_icons.asp

相关问题