07 2019 档案
摘要:import React, { useRef, useEffect } from 'react' import { desktopCapturer } from 'electron' import ScreenCapture from '~/shared/webrtc/ScreenCapture' const screenCapture = new ScreenCapture() windo...
阅读全文
摘要:iTerm2(https://www.iterm2.com/) 终端工具 Alfred(http://xclient.info/s/alfred.html) 快速启动器 WebStorm、VSCode、Vim都行 Moom(http://xclient.info/s/moom.html) 窗口大小管
阅读全文
摘要:如下是对窗口最大化,最小化等相关操作: 下面是electron配置: 如上配置中可设置一系列初始值,其中包括 是否可resize,是否可拖动等。如果想在其它地方修改初始值,可按照如下实现:
阅读全文
摘要:cursor: url('~ROOT/shared/assets/image/vn-text-cursor-31-49.png') 22 22, nw-resize;另外还有一个 cursor: grab; 表示一个可拖动的手势。
阅读全文
摘要:1. electron createWindow 的时候 设置 transparent: true, clickThrough: 'pointer-events' 2. body 上添加 pointer-events: none;, 不点透的元素加 pointer-events: all;3. 在
阅读全文