06 2023 档案
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi
阅读全文
摘要:角度canvassvg绘图方式通过绘制像素点来创建图像,绘制过程是即时的,绘制的元素不保留在 DOM 中,因此对于大量绘图以及动画效果更为适合。通过创建矢量图形来创建图像,绘制过程是基于 XML 的,绘制的元素是保留在 DOM 中的,因此对于静态图形、数据可视化等场景更为适合。分辨率由于是像素级别的
阅读全文
摘要:更多 input type 属性 number:数字; tel:电话; search:搜索; email:邮箱; url:地址; date:年月日; time:时分秒; month:月; week:周; time:时间; color:生成颜色选择表单; range:范围 原有 text:文本 rad
阅读全文
摘要:全屏是否可用:Document.fullscreenEnabled 开启全屏:Document.requestFullScreen() 该方法返回 promise 退出全屏:Document.exitFullscreen() 让当前元素退出全屏模式,会有一个全屏栈 获取元素全屏状态:Document
阅读全文
摘要:pip install imageio imageio@2.30.0 文档中说 loop 默认为 0 也就是无限循环播放,但实际上只播放一次 images = [] numberlist = os.listdir('images/charGrayFrames') for i in range(len
阅读全文
摘要:pip install pyautogui document import pyautogui pyautogui.size() pyautogui.position() 鼠标 To 是绝对坐标Rel 或者 不带 To 是相对坐标 pyautogui.moveTo(x=None, y=None, d
阅读全文
摘要:参考博客 pip install pyinstaller 打包命令 pyinstaller -F -w -i xxx.ico xxxx.py pyinstaller -D -w -i xxx.ico xxxx.py -F 参数代表制作独立的可执行程序。-w 指程序启动的时候不会打开命令行。如果不加-
阅读全文