gpt4 book ai didi

twitter-bootstrap - 如何在 Bootstrap 实现的网页中使用社交字形图标?

转载 作者:行者123 更新时间:2023-12-03 14:34:34 24 4
gpt4 key购买 nike

我无法在 Bootstrap 实现的网页中使用社交媒体字形图标。
我能够使用常用的搜索、地球仪等等。

这就是我使用常用​​的方法:

<span class="glyphicons glyphicons-search"></span>

您如何为社交字形图标实现上述方法?

最佳答案

glyphicons that come free with Bootstrap 3full paid Glyphicons library 的子集并且不包括社交媒体图标集。

相反,您可以使用 Font Awesome ,完全支持的免费替代品(以及 Bootstrap 4 中的首选图标套件),它具有免费的品牌图标集:

enter image description here

Font Awesome Version 4 - Brands - 演示在 jsFiddle & 堆栈片段:

<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>

<i class="fa fa-bitbucket"></i>
<i class="fa fa-digg"></i>
<i class="fa fa-dropbox"></i>
<i class="fa fa-facebook"></i>
<i class="fa fa-flickr"></i>
<i class="fa fa-foursquare"></i>
<i class="fa fa-github"></i>
<i class="fa fa-google"></i>
<i class="fa fa-google-plus"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-jsfiddle"></i>
<i class="fa fa-linkedin"></i>
<i class="fa fa-pinterest"></i>
<i class="fa fa-reddit"></i>
<i class="fa fa-skype"></i>
<i class="fa fa-soundcloud"></i>
<i class="fa fa-spotify"></i>
<i class="fa fa-stack-exchange"></i>
<i class="fa fa-stack-overflow"></i>
<i class="fa fa-steam"></i>
<i class="fa fa-stumbleupon"></i>
<i class="fa fa-tumblr"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-vimeo-square"></i>
<i class="fa fa-vine"></i>
<i class="fa fa-windows"></i>
<i class="fa fa-wordpress"></i>
<i class="fa fa-yahoo"></i>
<i class="fa fa-youtube"></i>



<style type="text/css">
.fa {
padding: 4px;
width: 200px;
}

.fa::before {
display: inline-block;
/* .fa-fw */
width: 1.28571429em;
text-align: center;
}

.fa::after {
content: attr(class);
font-family: consolas, monospace;
font-size: 15px;
/* .code */
padding: 2px 4px;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
margin-left: 5px;
}
</style>


对于 Font Awesome 5 ,您仍然可以使用带有单独 brands bundle 的品牌:
<i class="fab fa-youtube"></i>

关于twitter-bootstrap - 如何在 Bootstrap 实现的网页中使用社交字形图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24632076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com