jjw

写给自己的博客。 记录学习的点滴以备查。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页

2020年11月26日

摘要: console.log(Object.__proto__ Function.prototype);//true console.log(Function.__proto__ Function.prototype);//true console.log(Object.__proto__ Functio 阅读全文

posted @ 2020-11-26 20:24 jjw 阅读(86) 评论(0) 推荐(0) 编辑

2020年11月21日

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文

posted @ 2020-11-21 16:37 jjw 阅读(91) 评论(0) 推荐(0) 编辑

摘要: body { font: 12px/1.5 或 font: 12px/36px } 1.5是当前元素字体的1.5位 阅读全文

posted @ 2020-11-21 16:10 jjw 阅读(84) 评论(0) 推荐(0) 编辑

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文

posted @ 2020-11-21 15:49 jjw 阅读(520) 评论(0) 推荐(0) 编辑

2020年11月8日

摘要: async play() { let upload = document.getElementById("file1"); let f = upload.files[0]; var ctx = new AudioContext(); var source = ctx.createBufferSour 阅读全文

posted @ 2020-11-08 21:53 jjw 阅读(78) 评论(0) 推荐(0) 编辑

摘要: methods: { async upfile() { let upload = document.getElementById("file1"); let f = upload.files[0]; let size = 1024 * 100; let start = 0, end = 0; let 阅读全文

posted @ 2020-11-08 16:40 jjw 阅读(169) 评论(0) 推荐(0) 编辑

2020年11月7日

摘要: fetchData() { (async ()=> { const valueObj = { UserName: 'jjw', Tel: '123456' } let d2 = await fetch('http://127.0.0.1:8080/datasnap/rest/TServerMetho 阅读全文

posted @ 2020-11-07 20:20 jjw 阅读(207) 评论(0) 推荐(0) 编辑

2020年11月6日

摘要: procedure TWebModule1.WebModuleBeforeDispatch(Sender: TObject; Request: TWebRequest; Response: TWebResponse; var Handled: Boolean); begin if UpperCase 阅读全文

posted @ 2020-11-06 22:57 jjw 阅读(180) 评论(0) 推荐(0) 编辑

2020年5月16日

摘要: d1,d2,d3的width之和大于父元素的宽,并且都没有设置flex-shrink属性时, 会自动按自身比例收缩,见下图: 如果d1,d2,d3都设置了flex-shrink值时,即使是0, 则会溢出父元素的边框,见下图: 当d1,d2,d3任何一个设置了flex-shrink属性值时,(其它两个 阅读全文

posted @ 2020-05-16 00:46 jjw 阅读(277) 评论(0) 推荐(0) 编辑

摘要: 当 d1,d2,d3未设置widht 并且flex-grow 为1时, 它们等分父元素的width,如下图: 当d1,d2,d3 未设置widht时, 设置flex-grow都为小数时,相当于按百分比占据父元素的width, 如d1->0.1 d2->0.2 d3->0.3时, 见下图: 如果d1, 阅读全文

posted @ 2020-05-16 00:09 jjw 阅读(457) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页