bootstrap 字形解锁未显示
bootstrap glyphicon unlock is not displaying
我 table 有一列状态,状态的可能值为 1 和 0。
现在我正在尝试显示字形图标解锁,但它根本不显示,但字形图标锁定工作正常。
我正在使用 bootstrap 3.3.5。不知道为什么不显示
当我使用 google chrome 检查时,相应的图标 class 不存在。
所以如果有人能提供解锁的内容值就好了
如有任何帮助,我们将不胜感激。
简单回答
好吧,根据你的问题,我猜你的字形设置是这样的:
<span class='glyphicon glyphicon-lock'></span>
这会正确显示你的挂锁,你想知道为什么
<span class='glyphicon glyphicon-unlock'></span>
没有显示。我很快就为你做了一些研究,在 bootstrap 组件 http://getbootstrap.com/components/ 的网站官方文档中,你会看到 bootstrap 库中所有可用字形的列表,unlock
不幸的是不是其中之一。
备选方案
Fontawesome 是一组具有非常大图书馆的图标,是的,您的解锁图标肯定在那里。我不确定您如何使用所有这些,但我为您找到了一些资源链接!
http://fortawesome.github.io/Font-Awesome/
Adding extra glyphicons to bootstrap
我希望至少有一些帮助。
这是因为 Bootstrap 实际上只使用 Glyphicon "Halflings" 图标集,不包括 "unlock" 图标。您可以在此处查看 "halflings":
http://glyphicons.com/
单击 "halflings" 选项卡。
如 getbootstrap.com/components 页面所述:
Available glyphs Includes over 250 glyphs in font format from the
Glyphicon Halflings set. Glyphicons Halflings are normally not
available for free, but their creator has made them available for
Bootstrap free of cost. As a thank you, we only ask that you include a
link back to Glyphicons whenever possible.
我 table 有一列状态,状态的可能值为 1 和 0。
现在我正在尝试显示字形图标解锁,但它根本不显示,但字形图标锁定工作正常。
我正在使用 bootstrap 3.3.5。不知道为什么不显示
当我使用 google chrome 检查时,相应的图标 class 不存在。
所以如果有人能提供解锁的内容值就好了
如有任何帮助,我们将不胜感激。
简单回答
好吧,根据你的问题,我猜你的字形设置是这样的:
<span class='glyphicon glyphicon-lock'></span>
这会正确显示你的挂锁,你想知道为什么
<span class='glyphicon glyphicon-unlock'></span>
没有显示。我很快就为你做了一些研究,在 bootstrap 组件 http://getbootstrap.com/components/ 的网站官方文档中,你会看到 bootstrap 库中所有可用字形的列表,unlock
不幸的是不是其中之一。
备选方案
Fontawesome 是一组具有非常大图书馆的图标,是的,您的解锁图标肯定在那里。我不确定您如何使用所有这些,但我为您找到了一些资源链接!
http://fortawesome.github.io/Font-Awesome/
Adding extra glyphicons to bootstrap
我希望至少有一些帮助。
这是因为 Bootstrap 实际上只使用 Glyphicon "Halflings" 图标集,不包括 "unlock" 图标。您可以在此处查看 "halflings": http://glyphicons.com/ 单击 "halflings" 选项卡。
如 getbootstrap.com/components 页面所述:
Available glyphs Includes over 250 glyphs in font format from the Glyphicon Halflings set. Glyphicons Halflings are normally not available for free, but their creator has made them available for Bootstrap free of cost. As a thank you, we only ask that you include a link back to Glyphicons whenever possible.