wx.getSystemInfo() 获取系统信息 函数参数: 返回值: 例如:写法一index.js 1 /* 2 brand 设备品牌 3 model 设备型号 4 pixelRatio 设备像素比 5 screenWidth 屏幕宽度,单位px 6 screenHeight 屏幕高度,单位px ...
分类:
微信 时间:
2020-07-06 15:55:03
阅读次数:
123
1.python操作word文档: import docx from docx.oxml.ns import qn from docx.shared import Pt, RGBColor, Inches from docx.enum.text import WD_PARAGRAPH_ALIGNME ...
分类:
编程语言 时间:
2020-07-06 10:51:25
阅读次数:
71
###准备 安装facenet-pytorch及其相关包 pip install facenet-pytorch 模型下载,提取码: 74s4 vggface2_*.pt,两个文件存放于~/.cache/torch/checkpoints/ ###代码 from facenet_pytorch im ...
分类:
Web程序 时间:
2020-07-05 19:43:42
阅读次数:
64
实现向左滑动删除 wxml <scroll-view scroll-y enable-back-to-top style="height:{{ scrollHeight }}px" > <view> <block wx:for="{{ list }}" wx:for-item="item" wx:f ...
分类:
微信 时间:
2020-07-04 19:01:04
阅读次数:
501
一、打印float类型 %f来表示float和double类型的数字 %e来打印指数记数法的浮点数 如果系统支持十六进制的浮点数,可以使用a和A分别来代替e和E 打印long double类型要使用%Lf或%Le或%La来替代 #include<stdio.h> int D12_1_showf_pt ...
分类:
其他好文 时间:
2020-07-04 01:43:16
阅读次数:
77
常规篇: 首先,用ps查看进程,方法如下: $ ps -ef ……smx 1822 1 0 11:38 ? 00:00:49 gnome-terminalsmx 1823 1822 0 11:38 ? 00:00:00 gnome-pty-helpersmx 1824 1822 0 11:38 pt ...
分类:
系统相关 时间:
2020-07-03 15:26:54
阅读次数:
72
calc()使用通用的数学运算规则,但是也提供更智能的功能: >使用“+”、“-”、“*” 和 “/”四则运算; >可以使用百分比、px、em、rem等单位; >可以混合使用各种单位进行计算; >表达式中有“+”和“-”时,其前后必须要有空格,如"widht: calc(12%+5em)"这种没有空 ...
分类:
Web程序 时间:
2020-07-03 10:25:35
阅读次数:
179
Html&Css06:字体 html==>结构 css ==>表现 js ==>行为 1、字体相关的样式 color 用来设置字体的颜色 font-size 字体的大小 em 相当于当前元素的一个font-size rem 相对于根元素的一个font-size px font-family 字体族( ...
分类:
Web程序 时间:
2020-07-02 13:08:46
阅读次数:
70
这里选择的是px to rem插件,使用步骤: 1、首先,安装px to rem插件; 2、然后,在设置->用户设置中->扩展中找到【px to rem】; 如图: 3、或者直接在setting.json中配置 1 2 "px-to-rem.px-per-rem": 75, "px-to-rem.n ...
分类:
其他好文 时间:
2020-06-30 00:38:39
阅读次数:
176
我们可以通过QtCursor::setPos全局方法来进行鼠标位置的设置 以下的代码演示将光标移动到控件的左上角上。先将0,0点转换到桌面坐标 //QWidget* pWidget;QPoint pt(0,0);QPoint center = pWidget->mapToGlobal(pt);QCu ...
分类:
其他好文 时间:
2020-06-29 22:52:30
阅读次数:
227