有没有办法减少Glyphicons的“重量”?
我正在使用“ok”Glyphicon <span class="glyphicon glyphicon-ok"></span>
,显示如下:
有没有办法减少重量,以产生更薄的刻度而不减小字体大小?将font-weight
改为lighter
没有任何影响。
使用白色笔划是一种方法
-webkit-text-stroke: 2px white;
你可以在font-weight
伪元素上应用::before
属性来改变font-weight:
.glyphicon {
font-size: 60px;
}
.glyphicon-light::before {
font-weight: 100;
}
.glyphicon-thick::before {
font-weight: 900;
}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<span class="glyphicon glyphicon-search glyphicon-light"></span>
<span class="glyphicon glyphicon-search"></span>
<span class="glyphicon glyphicon-search glyphicon-thick"></span>
适用于不同的背景颜色。
$(document).ready(function() {
$( "[.fas || .glyphicon]" ).each(function( index ) {
var color = $(this).parent().css("background-color");
$(this).css("-webkit-text-stroke","2px "+color)
});
});
注意:选择
.fas
或.glyphicon
之一。
如果您不想全局应用,也可以在glyphicon
上使用不透明度。
<span style="opacity:0.25;" class="glyphicon glyphicon-ok"></span>