码迷,mamicode.com
首页 >  
搜索关键字:fontsize    ( 355个结果
自响应布局封装函数
(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
WPF TextBlock 和 Label文字垂直显示
简述  制作曲线时,Y轴标签需要垂直显示。只需将TextBlock或Label的Layout旋转90°或270°即可。代码<TextBlockx:Name="TbYAxis"Canvas.Left="10"Canvas.Top="50"FontSize="20"Foreground="White"Text="Y轴"><TextBlock.LayoutTrans
分类:Windows程序   时间:2018-11-23 15:19:42    阅读次数:296
echarts更改坐标轴文字颜色及大小
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
基于JQ的自定义弹窗组件
window.onresize = function() { /* 默认设置字体为可视区/7.5 max:256px min */ document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 ...
分类:其他好文   时间:2018-11-06 13:42:23    阅读次数:145
关于echarts生成雷达图的一些参数介绍
export const industryFactorOption = { title: { text: '雷达图', textStyle: { color: 'rgba(221,221,221,1)', //标题颜色 fontSize: 14, lineHeight: 20, ... ...
分类:其他好文   时间:2018-10-25 11:05:57    阅读次数:160
js实现字体和容器宽高随窗口改变
用于字体大小和容器的宽高字体和宽高设为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
c# 生成验证码图片
/// /// 生成验证码图片 /// /// public byte[] GetVerifyCode() { int codeW = 80; int codeH = 40; int fontSize = 18; ... ...
分类:Windows程序   时间:2018-10-01 12:24:53    阅读次数:193
原生js获取外联样式
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
动态获取移动端视宽,从而结合rem达到适配
// jq !function(){ var windowWidth= $(window).width(); if(windowWidth > 750) { windowWidth = 750; } var fontSize = windowWidth ... ...
分类:移动开发   时间:2018-09-08 19:23:22    阅读次数:170
355条   上一页 1 ... 3 4 5 6 7 ... 36 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!