1.paint.setStyle(Paint.Style.STROKE)
// radius="100dp"
// interRadius="40dp"
// linearWidth="10dp"
// stokenWidth="40dp"
mPaint=new Paint();
mPaint.setStyle(Paint.Style.STRO...
分类:
其他好文 时间:
2015-03-13 14:22:06
阅读次数:
145
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions ...
分类:
其他好文 时间:
2015-03-05 20:48:47
阅读次数:
149
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions ...
分类:
其他好文 时间:
2015-02-25 11:31:55
阅读次数:
147
Sencha touch从2.2开始,里面用到的图标全部是字体图标(icon font),也就是字体文件里面的字符作为图标来用。
主要特性
字体是矢量的,使用icon font来生成图标相对于基于图片的图标来说,有如下的好处:
自由的变化大小而不失真,适用于不同分辨率和尺寸的屏幕自由的修改颜色添加阴影效果支持图片图标的其它属性,例如,透明度和旋转等等可以添加text-stroke和b...
分类:
移动开发 时间:
2015-02-05 13:40:05
阅读次数:
343
效果: 1 2 3 4 5 11 SVG折线图12 13 14 17 18 19 20 21 27 160 L 170" stroke="#C0D0E0" stroke-width="1" opacity="1"/>28 29 30 ...
分类:
其他好文 时间:
2015-01-25 22:26:12
阅读次数:
1037
数据开发-经典1.按姓氏笔画排序:Select * From TableName Order By CustomerName Collate Chinese_PRC_Stroke_ci_as //从少到多2.数据库加密:select encrypt('原始密码') select pwdencrypt...
分类:
其他好文 时间:
2015-01-24 01:37:17
阅读次数:
191
第一步:html5页面中添加canvas元素1、javascript绘制图形(矩形)除了可以使用fillStyle和fillRect,还可以使用strokeStyle和strokeRect,fill是填充,而stroke是轮廓,所有用strokeStyle和strokeRect是绘制的矩形轮廓,而f...
分类:
其他好文 时间:
2015-01-05 18:26:16
阅读次数:
178
svg中的 元素,是用来绘制圆形的,例如 效果如下 属性说明 cx,cy 设定圆心,r设定半径 圆形的边框 可以通过设置样式设置圆形的边框 例如 属性说明 stroke 边框的颜色 stroke-width 边框的宽度 fill 填充的颜色 效果如下...
分类:
其他好文 时间:
2014-12-27 20:09:12
阅读次数:
207
画直线:var c = document.getElementById("myCanvas"); //不要忘写documentvar ctx = c.getContext("2d");ctx.lineWidth = 10; ctx.strokeStyle = "red"; // 注意不是stroke...
分类:
Web程序 时间:
2014-12-21 12:40:30
阅读次数:
227