docker网络官网 https://docs.docker.com/network/ 3.1 计算机网络模型 3.2 Linux中网卡 3.2.1 查看网卡[网络接口] 01-ip link show 02-ls /sys/class/net 03-ip a 3.2.2 网卡 3.2.2.1 ip ...
分类:
其他好文 时间:
2020-01-08 22:57:48
阅读次数:
87
cell-month 组件 <template> <div class="cell-month"> <div class="weeklist"> <!--星期几--> <div class="week_box"> <p v-for="(item,index) in weekData"> {{item ...
分类:
其他好文 时间:
2020-01-08 18:37:58
阅读次数:
351
水平翻转(标注翻转): def random_horizontal_flip(image, bboxes): _, w, _ = image.shape # [::-1] 顺序相反操作 # a = [1, 2, 3, 4, 5] # a[::-1] # Out[3]: [5, 4, 3, 2, 1] ...
分类:
其他好文 时间:
2020-01-08 16:07:33
阅读次数:
97
为什么要获取页面元素? 例如:我们想要操作页面上的某部分(显示/隐藏,动画),需要先获取到该部分对应的元素,再对其进行操作。 1.3.1. 根据ID获取 案例代码 1.3.2. 根据标签名获取元素 案例代码 注意:getElementsByTagName()获取到是动态集合,即:当页面增加了标签,这 ...
分类:
编程语言 时间:
2020-01-07 22:43:52
阅读次数:
95
jQuery中mouseout和mouseleave区别 1 <body> 2 <div id="box1"> 3 <div id="box2"></div> 4 </div> 5 <script src="jquery.js"></script> 6 <script> 7 let box1 = $ ...
分类:
Web程序 时间:
2020-01-07 19:59:44
阅读次数:
106
上午想偷个懒,没想到下午就遇到多行文本溢出问题了。。。 在父级上添加属性: overflow:hidden; 然后在文本容器上添加: display: -webkit-box; -webkit-line-clamp: 2;//这个是允许显示的行数 -webkit-box-orient: vertic ...
分类:
微信 时间:
2020-01-07 17:54:19
阅读次数:
134
*,::after,::before { -webkit-box-sizing: border-box; box-sizing: border-box} ::-webkit-scrollbar { width: 8px; background-color: #c1787800; border-rad ...
分类:
其他好文 时间:
2020-01-07 16:30:18
阅读次数:
97
原文:WPF ComboBox 默认选中无效 在WPF开发当中,我发现ComboBox的默认选中逻辑失效了,仔细查找后发现后台逻辑并没有出现问题。 测试后发现在XAML中,ComBoBox控件的SelectedValue属性需要写在ItemSource之前,默认选中又恢复正常了。 ...
分析: 点击按钮,设置浏览器窗口背景的颜色变化。 效果: 代码: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>开关灯案例</title> 6 <style> 7 *{ 8 margin ...
分类:
其他好文 时间:
2020-01-07 00:58:01
阅读次数:
72
桥接 1.安装协议 2.虚拟机设置桥接 桥接成功 ok! ...
分类:
其他好文 时间:
2020-01-07 00:33:25
阅读次数:
88