(function(){ var html=document.querySelector('html') html.style.fontSize=window.innerWidth/7.5+'px' window.onresize=function(e){ html.style.fontSize=w ...
分类:
其他好文 时间:
2019-01-12 12:09:41
阅读次数:
181
简述 制作曲线时,Y轴标签需要垂直显示。只需将TextBlock或Label的Layout旋转90°或270°即可。代码<TextBlockx:Name="TbYAxis"Canvas.Left="10"Canvas.Top="50"FontSize="20"Foreground="White"Text="Y轴"><TextBlock.LayoutTrans
xAxis: { data: anameArr, axisLabel: { show: true, textStyle: { color: '#c3dbff', //更改坐标轴文字颜色 fontSize : 14 //更改坐标轴文字大小 } }, axisTick... ...
分类:
其他好文 时间:
2018-11-21 11:01:07
阅读次数:
3665
<fontsize=3>前些年,知乎引领了一轮内容变现和知识经济的潮流,在知乎Live之后,出现了一大批友商推出的跟风者,“知识变现”、“内容付费”等“投资热点”开始甚嚣尘上。</font><fontsize=3>从目前来看,知乎Live毫无疑问已经获得了阶段性成功,无论是平均质量、参与人数或者是社会关注度,知乎Live都是竞品之中最强的。</font&g
分类:
其他好文 时间:
2018-11-13 20:18:07
阅读次数:
246
window.onresize = function() { /* 默认设置字体为可视区/7.5 max:256px min */ document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 ...
分类:
其他好文 时间:
2018-11-06 13:42:23
阅读次数:
145
export const industryFactorOption = { title: { text: '雷达图', textStyle: { color: 'rgba(221,221,221,1)', //标题颜色 fontSize: 14, lineHeight: 20, ... ...
分类:
其他好文 时间:
2018-10-25 11:05:57
阅读次数:
160
用于字体大小和容器的宽高字体和宽高设为rem就可以了 var html = document.documentElement; function fonts(){ var hW = html.offsetWidth; var hS = hW / 50; html.style.fontSize = h ...
分类:
Web程序 时间:
2018-10-21 19:34:54
阅读次数:
310
/// /// 生成验证码图片 /// /// public byte[] GetVerifyCode() { int codeW = 80; int codeH = 40; int fontSize = 18; ... ...
1、getComputedStyle(ele,null).fontSize //ele所需获取样式的元素节点 第二个参数填null就好。后面属性是你需要的样式属性。ie不支持。 2、ie:oBox.currentStyle.fontSize //ie内使用currentStyle 3、兼容: fun ...
分类:
Web程序 时间:
2018-09-12 15:07:58
阅读次数:
170
// jq !function(){ var windowWidth= $(window).width(); if(windowWidth > 750) { windowWidth = 750; } var fontSize = windowWidth ... ...
分类:
移动开发 时间:
2018-09-08 19:23:22
阅读次数:
170