/*向左移动并弹性显示*/ @-webkit-keyframes fadeToLeftTan{ 0%{ -webkit-transform:translateX(100%); opacity:0;} 70%{ -webkit-transform:translateX(-5%); opacity:1; ...
分类:
Web程序 时间:
2020-07-17 19:33:49
阅读次数:
70
error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory 在CentOS 7.6 操作系统的机器上安装 MySQL 过程中,执行安装命令报 ...
分类:
其他好文 时间:
2020-07-17 13:34:29
阅读次数:
60
环境背景 这里以配置两个mysql数据库为展示用例。持久层使用mybatis实现。两个连接分别使用不同的连接池 druid 和 hikari 相关知识 这里介绍了一些相关的知识点,清楚后可以跳过 mybatis和mybatis-spring-boot-starter的关系 在pom依赖上它们是两个不 ...
分类:
编程语言 时间:
2020-07-17 09:19:46
阅读次数:
72
package _interview_question /** * Check if a given array contains duplicate elements within k distance from each other. * Given an unsorted array that ...
分类:
其他好文 时间:
2020-07-17 01:23:35
阅读次数:
107
1 ealsticsearch常用术语 Index 索引 类比mysql中的表 6.0之后 Document 文档数据 类比mysql 表中的一行数据 Field字段 类比mysql表字段 Query DSL 查询语法 2 elasticsearch crud create 创建文档 read 读取 ...
分类:
其他好文 时间:
2020-07-16 21:38:56
阅读次数:
78
用户体验一直是前端开发需要考虑的重要部分,在数据请求时常见到锁屏的loading动画,而现在越来越多的产品倾向于使用Skeleton Screen Loading(骨架屏)替代,以优化用户体验 Skeleton Screen Skeleton Screen(骨架屏)就是在页面数据尚未加载前先给用户展 ...
分类:
Web程序 时间:
2020-07-16 18:29:18
阅读次数:
72
css中:focus-within是什么 在css中 :focus-within 是一个伪类,现在已经被列入到css选择器中(css Level 4 selector)。css中伪类:focus-within能非常方便处理获取焦点状态, 当元素本身或其后代获得焦点时,:focus-within伪类的 ...
分类:
Web程序 时间:
2020-07-16 18:25:07
阅读次数:
80
Shader "Unlit/WaterEffect"{ Properties { _MainTex ("Base (RGB)", 2D) = "white" {} _StartX("StartX",Float) = 0.5 _StartY("StartY",Float) = 0.5 _WaveStr ...
分类:
其他好文 时间:
2020-07-16 18:09:20
阅读次数:
59
学习使用PIL生成随机验证码图片的实例! 效果: 代码: # 使用生成随机验证码图片 # Python 3.5.1 import string from random import randint, sample from PIL import Image, ImageDraw, ImageFont ...
分类:
其他好文 时间:
2020-07-16 12:26:42
阅读次数:
69
problem 1380. Lucky Numbers in a Matrix 在矩阵中,如果一个数既是它所在行的最小值,又是它所在列的最大值,则称这个数为幸运数。找到矩阵中所有的幸运数。 Constraints All elements in the matrix are distinct. so ...
分类:
其他好文 时间:
2020-07-16 00:15:33
阅读次数:
72