上位机字体的通用设置是使用FontSize进行设置,可是实际上FontSize 为8 时,不是代表字体像素高度为8. 英文字体的bai1磅,相当于1/72 英寸,约等于1/2.8mm。 12PT的字打印出来约为4.2mm。 网页中12px的字才相当于12像素。 虽然 四号=(14/72)*96=18 ...
分类:
其他好文 时间:
2020-06-24 18:05:25
阅读次数:
240
{ "git.autofetch": true, "editor.fontFamily": "'Courier New', Consolas, monospace", "editor.fontSize": 16, "files.autoGuessEncoding": true, // "files. ...
分类:
Web程序 时间:
2020-06-08 14:35:50
阅读次数:
149
var Global={ init:function() { this.htmlFontSize(); }, //设置根元素的font-size htmlFontSize:function(){ var doc = document; var win = window; function initF ...
分类:
Web程序 时间:
2020-05-23 18:19:16
阅读次数:
62
var option = { title: { text: '带宽流入流出趋势图', textStyle: { fontSize: 14 } }, tooltip: { trigger: 'axis', axisPointer: { type: 'cross', label: { backgroun ...
分类:
其他好文 时间:
2020-05-09 15:29:58
阅读次数:
64
解决方法: 使用line-height设置,把上面部分露出来。 height和line-height设置一样的值时会垂直居中。 给父元素设置fontsize=0,再给子元素设置fontsize可以把空白去掉。 <style> .b{ font-size: 0; } .b .a{ font-size: ...
分类:
其他好文 时间:
2020-05-08 23:10:28
阅读次数:
123
!function(e,t){function n(){t.body?t.body.style.fontSize=12*o+"px":t.addEventListener("DOMContentLoaded",n)}function d(){var e=i.clientWidth/24;i.styl ...
分类:
Web程序 时间:
2020-04-29 12:37:31
阅读次数:
83
postcss pxtorem是一款将px转换成rem格式的方式,本质上是以html标签的fontsize值为基准,动态改变元素的各种计量单位 1. 安装 2. 导入 3. 配置 网上看到在安装后vue项目根目录下会自动生成一个postcss.config.js的配置文件, 但是笔者在安装导入pos ...
分类:
Web程序 时间:
2020-04-19 11:05:11
阅读次数:
152
单独定义echarts中每个图例的样式,自定义图例的点击方法 //用不同样式的图例用数组写对应图例的样式 legend:[{ top: "15%", right: "24%", textStyle: { color: "#3BAEFE", fontSize: 14, fontFamily: "微软雅 ...
分类:
其他好文 时间:
2020-04-14 18:24:20
阅读次数:
179
2维的热度图 imagesc imagesc(x, y, z),x和y分别是横纵坐标,z为值,表示颜色 1 imagesc(theta,phi,slc); colorbar 2 xlabel('theta(°)','fontname','Times New Roman','FontSize',14) ...
分类:
其他好文 时间:
2020-03-31 01:28:38
阅读次数:
97
RichText( text: TextSpan( text: "登录代表同意", style: TextStyle( color: Styles.rgb_color_666, fontSize: Styles.textsize_13), children: [ TextSpan( text: "《 ...
分类:
其他好文 时间:
2020-03-30 16:13:41
阅读次数:
190