Android资源类型 > 形状可绘制图像shape 语法 <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape=[ ...
分类:
移动开发 时间:
2021-05-24 05:05:59
阅读次数:
0
1.首先创建一个自定义View类: public class CustomView extends ViewGroup { private int mleftMargin=20; private int mtopMargin=20; public CustomView(Context context ...
分类:
移动开发 时间:
2021-05-03 12:48:19
阅读次数:
0
在paintEvent事件中绘制窗口边框这里我们需要重写paintEvent方法,具体代码如下: void paintEvent(QPaintEvent *event) { QPainter painter(this); painter.setRenderHint(QPainter::Antiali ...
分类:
其他好文 时间:
2021-04-30 12:29:47
阅读次数:
0
某些新闻:小米logo换新,程序员一行代码(border-radius:19px)实现,目前此行代码价值200万 某程序员内心:所以还是因为我代码写太少了,所以这200万才没有我的份吗? 这事儿也成功的引起了本羊的注意,花点时间,咱也用WPF来实现一下,到底这超圆角有多好看? 先上效果图: 经过一番 ...
分类:
移动开发 时间:
2021-04-27 15:02:12
阅读次数:
0
1.定义齿轮参数 齿轮模数,齿轮齿数,齿形角(分度圆上的压力角),齿顶高系数,齿顶隙系数,齿根圆角半径,腹板上的圆孔数; 齿顶高 = 齿顶高系数 * 齿轮模数; 齿根高 = (齿顶高系数+齿顶隙系数) * 齿轮模数; 分度圆直径 = 齿轮模数 * 齿轮齿数; 基圆直径 = 分度圆直径 * cos(齿 ...
分类:
其他好文 时间:
2021-04-23 11:48:06
阅读次数:
0
series层里面 itemStyle: { normal: { // 设置圆角 barBorderRadius: [6,0,6,0], //多条线实现渐变效果 color:function(params) { var colorList = [ ['#662C58','#F84F50'], ['# ...
分类:
其他好文 时间:
2021-04-20 15:37:10
阅读次数:
0
8.1 圆角边框 在CSS3中,新增了圆角边框样式,这样我们的盒子就可以变圆角了。 border-radius属性用于设置元素的外边框圆角。语法: border-radius : length; radius半径(圆的半径)原理:(椭)圆与边框的交集形成圆角效果 参数值可以为数值或百分比的形式 如果 ...
分类:
Web程序 时间:
2021-01-26 12:22:08
阅读次数:
0
1、横向流程图源码格式: ?```mermaid graph LR A[方形] -->B(圆角) B --> C{条件a} C -->|a=1| D[结果1] C -->|a=2| E[结果2] F[横向流程图] ?``` graph LR A[方形] -->B(圆角) B --> C{条件a} C ...
分类:
其他好文 时间:
2020-12-07 12:05:50
阅读次数:
5
主要技术:扭曲、ctrl+alt+下箭头(轻移,要进行这个操作就先按【v】鼠标变成移动工具才可以使用)、透明度、ctrl+g(编组) (1)首先圆角矩形工具(U),旋转【ctrl+T】,右键扭曲, (2)按【v】转为移动工具,再按ctrl+alt+下箭头(按多几下),把轻移的图层全选按【ctrl+g ...
分类:
其他好文 时间:
2020-11-18 13:25:06
阅读次数:
24
android text加入圆角边框的方法是 声明一个自定义的一个xml样式,类似 <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" and ...
分类:
移动开发 时间:
2020-11-07 17:42:08
阅读次数:
29