1.通过关联的class样式属性写好css样式 .anim-order{ animation-duration: 500ms; animation-name: addInOrder; animation-timing-function: ease-in-out; } .anim-car{ anima ...
分类:
其他好文 时间:
2020-07-10 15:08:02
阅读次数:
65
创建剪切动画 对于剪切动画,使用clip-path代替width/height,避免DOM重排导致性能过低。 .animate { width: 200px; height: 200px; background: #000; animation: 1s clip; } @keyframes clip ...
分类:
Web程序 时间:
2020-07-10 00:09:31
阅读次数:
86
最近某宝新买了个4k显示器, 总价700多, 质量凑合, 就把树莓派接上来了, 这一下苦了眼睛了, 于是有了此番调整 1. 先解决4k下60帧的刷新率 在\boot\config.txt的末尾加入一条命令hdmi_enable_4kp60=1然后重启, 命令如下: # 打开命令行输入 sudo na ...
分类:
其他好文 时间:
2020-07-09 22:10:01
阅读次数:
468
<a href="javascript:;" class="a-upload"> <input type="file" name="" id="">点击这里上传文件 </a> <a href="javascript:;" class="file">选择文件 <input type="file" na ...
分类:
Web程序 时间:
2020-07-09 10:46:03
阅读次数:
566
1.高精度加法 string add(string a, string b)//只限两个非负整数相加{ string ans; int nb[100010] = {0}; int na[100010] = {0}; int la = a.size(), lb = b.size(); for (int ...
分类:
编程语言 时间:
2020-07-08 18:18:17
阅读次数:
108
修改C:\Program Files\mysql-8.0.16-winx64\my.ini [mysqld]# 设置3306端口port=3306# 设置mysql的安装目录basedir=C:\Program Files\mysql-8.0.16-winx64# 设置mysql数据库的数据的存放目 ...
分类:
数据库 时间:
2020-07-08 15:26:55
阅读次数:
86
本文针对关系型数据库的一般语法。限于篇幅,本文侧重说明用法,不会展开讲解特性、原理。
分类:
数据库 时间:
2020-07-08 10:25:03
阅读次数:
70
animation动画使用 图片上下循环跳转 html代码: <div class="siteicon"> <img src="./siteicon.png" alt=""> <p>点击跳转</p> </div> css代码: @keyframes icon{ 0%{ opacity: 0.8; t ...
分类:
Web程序 时间:
2020-07-07 22:11:21
阅读次数:
159
本文目录 1.基础概念 1.1缺失值分类 1.2缺失值处理方法 2.缺失观测及其类型 2.1了解缺失信息 2.2三种缺失符号 2.3Nullable类型与NA符号 2.4NA的特性 2.5convert_dtypes方法 3.缺失数据的运算与分组 3.1加号与乘号规则 3.2groupby方法中的缺 ...
分类:
其他好文 时间:
2020-07-07 19:45:37
阅读次数:
122
The type parameter is of type DBTYPE, and must be set to one of DB_BTREE, DB_HASH,DB_HEAP, DB_QUEUE, DB_RECNO, or DB_UNKNOWN. If type is DB_UNKNOWN, t ...
分类:
数据库 时间:
2020-07-05 00:30:38
阅读次数:
69