摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS3三角形不断放大特效</title> <link rel="stylesheet" href="css/style.css"> </head> <styl 阅读全文
posted @ 2021-04-12 14:57 AloneInDefeat 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 展示效果 html <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial- 阅读全文
posted @ 2021-04-12 11:19 AloneInDefeat 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 动画效果 代码 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-sc 阅读全文
posted @ 2021-03-16 10:14 AloneInDefeat 阅读(96) 评论(0) 推荐(0) 编辑
摘要: → 1- 输入网址→ 2- 缓存解析→ 3- 域名解析→ 4- tcp连接,三次握手→ 6- 页面渲染 一:输入网址 那肯定是输入你要访问的网站网址了,俗称url; 二:缓存解析 浏览器获取了这个url,当然就去解析了,它先去缓存当中看看有没有,从 浏览器缓存-系统缓存-路由器缓存 当中查看,如果有 阅读全文
posted @ 2020-11-29 21:45 AloneInDefeat 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 第一步 下载xshell 第二步 左上角新建会话框 输入名称(自定义) 主机地址(服务器地址) 端口 第三步 点击下面的连接 弹出弹框输入账号密码 第四步 输入命令 ls -l --列出当前目录下所有文件的一个长列表 (简写 ll) pwd 查看当前位置 cd /文件夹名称/ 进入到指定目录 rm 阅读全文
posted @ 2020-11-12 11:18 AloneInDefeat 阅读(3308) 评论(0) 推荐(0) 编辑
摘要: 使用格式: <img src="data:imge/jpeg;base64,base64码" alt=""/> data:,文本数据 data:text/plain,文本数据 data:text/html,HTML代码 data:text/html;base64,base64编码的HTML代码 da 阅读全文
posted @ 2020-10-26 11:00 AloneInDefeat 阅读(4070) 评论(0) 推荐(0) 编辑
摘要: 1、npm install crypto-js然后在项目中引入sha2562、import sha256 from 'crypto-js/sha256';然后将想要转换的字符 加密3、const hashDigest = sha256("我和我的祖国").toString();console.log 阅读全文
posted @ 2020-10-16 16:08 AloneInDefeat 阅读(1324) 评论(0) 推荐(0) 编辑
摘要: // 下载方法downloadString=(name, data) =>{ var urlObject = window.URL || window.webkitURL || window; var export_blob = new Blob([data]); var save_link = d 阅读全文
posted @ 2020-10-16 15:54 AloneInDefeat 阅读(418) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2020-10-16 15:22 AloneInDefeat 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 输入:一个二维数组,每一个元素为0或者1 输出:最多有多少个1是连续的 连续的定义:上下左右相邻 直接贴代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script> c 阅读全文
posted @ 2020-08-26 14:14 AloneInDefeat 阅读(1075) 评论(0) 推荐(0) 编辑