<input id="input" type="text" /> input { caret-color: red; } ...
分类:
其他好文 时间:
2021-06-04 19:13:12
阅读次数:
0
import abc #定义一个说话的方式接口类,只能被继承 不能被实例化 class Speak(abc.ABC): #@abc.abstractmethod @abc.abstractmethod def to_speak(self): pass #定义学生说话的类 class Student( ...
分类:
编程语言 时间:
2021-06-04 18:50:52
阅读次数:
0
# 静态文件访问地址前缀 STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'collectstatic') # 静态文件查找目录元组信息 STATICFILES_DIRS = ( os.path.join(BASE_DIR, ...
分类:
其他好文 时间:
2021-06-04 18:43:22
阅读次数:
0
Linux通过手机USB网络共享上网 因为各种各样的原因,Linux系统有时无法通过自身网卡接入互联网,而需要通过手机才能接入互联网。 设置方法如下: 1.连接好数据线并在手机设置中打开“USB网络共享”。 2. 终端中查看是否将USB接口识别为网络接口。 ip addr 或者 ifconfig 输 ...
分类:
移动开发 时间:
2021-06-03 18:20:05
阅读次数:
0
一、概述 实现素描效果的步骤: 1.将输入图像转换为灰度图像 2.使用滤波(中值滤波、高斯滤波)去除图像噪声 3.使用拉普拉斯算子进行边缘描述 4.使用二值分割去除无用噪声 5.输出图像并展示 二、源码示例 /** * 素描 * @param inputImagePath */ void showS ...
分类:
其他好文 时间:
2021-06-03 18:12:26
阅读次数:
0
1、使用命令下载 curl -sS https://getcomposer.org/installer | php 2.下载之后设置环境变量 mv composer.phar /usr/local/bin/composer 3.修改权限,否则执行会出错 chmod -R 777 /usr/local ...
分类:
其他好文 时间:
2021-06-03 18:05:24
阅读次数:
0
1、主体代码 #region [ 启动记事本 ] System.Diagnostics.Process Proc; try { // 启动记事本 Proc = new System.Diagnostics.Process(); Proc.StartInfo.FileName = "notepad.e ...
分类:
其他好文 时间:
2021-06-02 20:53:03
阅读次数:
0
静态定位 <style> .parent{ width: 300px; height: 300px; background-color: aqua; } .child{ width: 100px; height: 100px; background-color: pink; /* 静态定位 posi ...
分类:
其他好文 时间:
2021-06-02 20:33:41
阅读次数:
0
#ping whole local domainfor ip in {1..255};do ping -c 3 192.168.110.$ip >> ping.log;done grep '3 ttl' ping.log |awk '{print $4}' | sed 's\:\\g' |while ...
分类:
系统相关 时间:
2021-06-02 20:19:59
阅读次数:
0
都知道解决 外边距塌陷 有多种方法 其中一种 是给父盒子加个overflow:hiden;例如 <style> p { color: #f55; background: #fcc; width: 200px; line-height: 100px; text-align:center; margin ...
分类:
其他好文 时间:
2021-06-02 19:54:48
阅读次数:
0