代码如下: <style type="text/css"> .title{ position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 300px; height: 300px; font-size: 2 ...
分类:
Web程序 时间:
2021-02-04 11:40:34
阅读次数:
0
二进制日志: 1先确认正在用的是哪个日志: show master status; 2查看当前日志文件的事件: show binlog events in 'mysql-bin.000003'; 3通过位置号截取二进制日志: mysqlbinlog --start-position --stop-p ...
分类:
其他好文 时间:
2021-02-03 10:37:19
阅读次数:
0
? A common typing error is to place the hands on the keyboard one row to the right of the correct position. So ‘Q’ is typed as ‘W’ and ‘J’ is typed as ...
分类:
其他好文 时间:
2021-02-01 12:19:45
阅读次数:
0
生活中衡量一个人有气质:穿着打扮举止言行等等,编程中如何衡量一个人的代码能力?规范标准优雅高质量等等一个词形容专业从代码中看出是否有经验.. 建议遵循以下顺序: 布局定位属性:display / position / float / clear / visibility / overflow(建议 ...
分类:
Web程序 时间:
2021-01-27 14:06:31
阅读次数:
0
图片: 使用pygame编写的代码源代码: import pygame pygame.init() canvas=pygame.Surface((4096,4096)) rgb=[0,0,0] x_y=[0,0] for r in range(256): rgb[2]=0 rgb[1]=0 for ...
分类:
其他好文 时间:
2021-01-27 13:07:13
阅读次数:
0
上传参数名解析:明确哪些参数名可以修改 content-Disposition:一般可更改(from-data)接受表单的数据 name:表单参数值,不能更改 filename:文件名,可以更改 connect-Type:文件MIME,试情况而定 常见绕过方法 数据溢出-防止匹配(xxx...) 也 ...
分类:
Web程序 时间:
2021-01-25 10:53:05
阅读次数:
0
需求背景:选一张海报图片,在海报图片上实现自定义填充文字内容,文字颜色和字体可自定义,且文字区域可以拖动和等比例缩放,最终将文字和海报合成一张新的图片 需要用到的插件:html2canvas(用于将一段html转成canvas) 下面附上整个组件功能代码: /* eslint-disable cam ...
分类:
其他好文 时间:
2021-01-25 10:43:24
阅读次数:
0
写项目时报错:SyntaxError: Unexpected token T in JSON at position 0 代码如下:一般这个错误的出现,可以先检查模版代码是否正确闭合,此处错误时{{each}},应该是{{/each}},或者检查模版语言是否由有中文符号 ...
分类:
Web程序 时间:
2021-01-22 12:26:37
阅读次数:
0
Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1 = { 11, 12, 13, 14 } is 1 ...
分类:
其他好文 时间:
2021-01-21 10:52:05
阅读次数:
0
思路如下: /* 伪码 *///1. 输入并区分 N1 还是 N2,略//2. 求另一个数的最小进制:位序列上最大的数while (遍历另一个数所有的位) { 这一位的数值 = hash_val(这一位的字符); if (该位数值比其他所有的位的数值都要大) 更新这个数的进制}//3. while ...
分类:
其他好文 时间:
2021-01-18 11:30:13
阅读次数:
0