source $VIMRUNTIME/vimrc_example.vim source $VIMRUNTIME/mswin.vim behave mswin if &diffopt !~# 'internal' set diffexpr=MyDiff() endif function MyDiff( ...
分类:
系统相关 时间:
2020-06-19 14:02:38
阅读次数:
62
这是一道面试题,当时面试官问的是如何判断页面中两个元素是否发生碰撞(当时太久没有练习DOM方面的操作的api了,没有想到,现在又研究了一下) 场景:一个container容器中,有两个正方形方块,颜色分别为yellow,blue 给container容器绑定了mousehover事件,鼠标和yell ...
分类:
其他好文 时间:
2020-06-17 18:24:15
阅读次数:
133
$ sudo -i# bluetoothctl[bluetooth]# power off[bluetooth]# power on[bluetooth]# scan on[bluetooth]# connect XX:XX:XX:XX:XX:XX[Arc Touch Mouse SE]# trus... ...
分类:
系统相关 时间:
2020-06-10 11:12:31
阅读次数:
114
题目链接 luogu链接 这道题的简略题意是: 有一个$n$个点,$n$条边的有向图(可能有自环和重边),叫我们以最小代价选取一些点,使得无论从哪个点出发都要经过这些点。 思路: 因为有n个点,n条边,所以说我们可以知道一定至少有一个环。 而对于一条链来说,这条链必然要通向一个环! 所以我们就可以先 ...
分类:
其他好文 时间:
2020-06-05 21:19:21
阅读次数:
63
DOM动态添加删除表格内容所使用到的常用方法: insertRow(index) 在指定索引位置插入一行 createCaption() 为该表格创建标题 deleteRow(index) 删除表格中index索引处的行 deleteCaption() 删除表格标题 给表格行创建、删除单元格的方法: ...
分类:
其他好文 时间:
2020-06-04 22:02:18
阅读次数:
127
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:
Web程序 时间:
2020-06-03 12:07:52
阅读次数:
75
前端学习 bootstrap 4 学习: 样式: https://v4.bootcss.com/docs/getting-started/introduction/ css : 层叠样式表: 标签 style='width:80px;height:45px;background-color=""' ...
分类:
其他好文 时间:
2020-05-31 17:46:36
阅读次数:
63
JS事件 鼠标事件onclick 鼠标单击时触发此事件ondblclick 鼠标双击时触发此事件onmousedown 鼠标按下时触发此事件onmouseup 鼠标弹起时触发此事件onmouseover 鼠标移动到某个设置了此事件的元素上时触发此事件onmousemove 鼠标移动时触发此事件onm ...
分类:
Web程序 时间:
2020-05-28 16:45:11
阅读次数:
86
按下鼠标左键, 连击 按下鼠标右键, 停止 import win32api import time from pynput.mouse import Button, Controller mouse = Controller() while True: if (win32api.GetAsyncKe ...
分类:
编程语言 时间:
2020-05-26 18:22:04
阅读次数:
147