privateStringshareQrCode(Stringcontent){//获取底图Stringpath="/template/background.png";InputStreaminputStream=this.getClass().getResourceAsStream(path);QrConfigconfig=newQrConfig(118,118);//设置边
分类:
编程语言 时间:
2020-11-18 13:13:19
阅读次数:
13
如果想将文字设置为背景图片的颜色,需要如下步骤: 第一步:设置背景图片 background-image: url("3.jpg"); 第二步:设置属性 background-clip: text; 第三步:将文字颜色改为透明 color: transparent; <!DOCTYPE html> ...
分类:
其他好文 时间:
2020-11-11 15:52:25
阅读次数:
5
在设置login背景时,找到了一张这样的图片:但是设置成login背景时,如果没有做一些css适应设置,图片就变样了,变成了这样:严重变形了,这就造成了一种理想与现实的差距。若想解决这个自适应问题,其实很好解决,只需要在前端代码里加上这样css即可: 1 .main { 2 background: ...
分类:
Web程序 时间:
2020-11-11 15:50:24
阅读次数:
12
在配置asm磁盘的时候,openfiler通过识别,fdisk-l后需要配置网卡绑定
分类:
系统相关 时间:
2020-11-10 11:36:35
阅读次数:
18
使用css定制表格: .table{ display:table; /*相当于table*/ section{ &:nth-of-type(1){ display:table-header-group; /*相当于thead*/ background:#555; color:#fff; } &:nt ...
分类:
Web程序 时间:
2020-11-08 17:12:24
阅读次数:
27
增删改查 <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:padding="16dp" android:orientation="vertical" android:background="@drawable/bg" andr ...
分类:
移动开发 时间:
2020-11-06 02:34:22
阅读次数:
27
实验结论 实验任务1 1 ;ex1.asm 2 assume cs:code 3 code segment 4 mov ax, 0b810h 5 mov ds, ax 6 mov byte ptr ds:[0], 1 7 mov byte ptr ds:[1], 1 8 mov byte ptr d ...
分类:
其他好文 时间:
2020-11-02 10:40:55
阅读次数:
19
线性渐变 linear-gradient(direction, color-stop1, color-stop2, ...); 带兼容写法 这两个是效果一样的 background: linear-gradient(to bottom, #51098A 0%, #ffffff 100%); back ...
分类:
Web程序 时间:
2020-11-01 20:45:22
阅读次数:
27
实验任务1: 在masm目录下放入txt格式的文件,并将ex1的代码赋值粘贴入其中,将文件名改为ex1.asm 编译过程: 连接过程: 调试过程: 1、将程序装入内存后各寄存器的状态 DS = 075A表明PSP的地址为075A:0,那么源程序的地址就为076A:0,也就是CS的值 2、用d查看PS ...
分类:
其他好文 时间:
2020-11-01 10:05:36
阅读次数:
19
三、实验内容 1. 实验任务1 使用任意一款文本编辑器,编写8086汇编源程序ex1.asm。源代码如下: 1 ;ex1.asm 2 assume cs:code 3 code segment 4 mov ax, 0b810h 5 mov ds, ax 6 mov byte ptr ds:[0], ...
分类:
其他好文 时间:
2020-10-31 01:52:12
阅读次数:
21