08 2022 档案

摘要:1、可以在mac中下载 commander one 可以给安卓传输文件 打开commander one 会自动识别手机展示,如果不能识别可以换数据线测试下 内部存储设备/Android/data/应用的包名/files/ 阅读全文
posted @ 2022-08-31 19:37 Running00 阅读(440) 评论(0) 推荐(0) 编辑
摘要:开始 学习如何使用Charles以及了解它如何帮助您的最好方法就是安装它并查看它是如何工作的。如果尚未安装,请阅读安装指南。 https://www.charlesproxy.com/documentation/installation/ 开始使用Charles 通过从“开始”菜单,或从“应用程序” 阅读全文
posted @ 2022-08-27 18:04 Running00 阅读(64) 评论(0) 推荐(0) 编辑
摘要:官网:https://www.charlesproxy.com/ 官方提供了最新版本、贝塔、上一版本 Windows、Mac OS和Linux的Web调试代理应用程序 概述: Charles 是一个HTTP代理/HTTP监视器/反向代理,它使开发人员能够查看其机器和Internet之间的所有HTTP 阅读全文
posted @ 2022-08-27 16:55 Running00 阅读(94) 评论(0) 推荐(0) 编辑
摘要:h5调试 推荐使用腾讯团队开发的vconsole 小程序调试 小程序调试有官方内嵌的调试工具,也就是低配版的vconsole 开启方式:首先需要小程序是开发版或体验版,然后点击右上角三个点,打开调试,重新打开小程序就能看到了 移动端抓包 charles 阅读全文
posted @ 2022-08-27 16:48 Running00 阅读(70) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zzsdream/p/16367274.html 使用苹果官方推出的css函数env()、constant()来适 而env()和constant()函数有个必要的使用前提,H5网页设置viewport-fit=cover的时候才生效,小程序里的vie 阅读全文
posted @ 2022-08-25 11:02 Running00 阅读(29) 评论(0) 推荐(0) 编辑
摘要:https://joshondesign.com/p/books/canvasdeepdive/chapter02.html https://developer.mozilla.org/zh-CN/docs/Web/API/Canvas_API/Tutorial https://html.spec. 阅读全文
posted @ 2022-08-16 10:34 Running00 阅读(16) 评论(0) 推荐(0) 编辑
摘要:ctx.beginPath(); ctx.lineWidth = 20; ctx.moveTo(15, 15); ctx.lineTo(100, 30); ctx.stroke(); ctx.imageSmoothingEnabled = true; ctx.webkitImageSmoothing 阅读全文
posted @ 2022-08-15 16:33 Running00 阅读(658) 评论(0) 推荐(0) 编辑
摘要:var fnParam = null; var a = { fn: param => { // 加载真实函数 fnParam = param; } }; var pm = () => new Promise(resolve => { a.fn({ callback(data) { console.l 阅读全文
posted @ 2022-08-11 15:19 Running00 阅读(17) 评论(0) 推荐(0) 编辑
摘要:const canvasContext = swan.createCanvasContext('myCanvas'); canvasContext.setFillStyle('blue'); canvasContext.fillRect(10, 10, 150, 100); // canvasCon 阅读全文
posted @ 2022-08-10 14:26 Running00 阅读(46) 评论(0) 推荐(0) 编辑
摘要:https://github.com/mrdoob/three.js https://github.com/BabylonJS/Babylon.js THREE.js和BABYLON.js等很多框架封装了 WebGL,可以更容易地开发 3D 应用和游戏 阅读全文
posted @ 2022-08-10 13:17 Running00 阅读(24) 评论(0) 推荐(0) 编辑
摘要:1、设置->辅助-》触控板-》启用拖拽-》三指拖移 新版Mac:辅助=》指针控制=〉触控版选项 =》使用触控板进行拖移=〉拖移样式=》三指拖移 2. https://www.chromedownloads.net/chrome64osx/ https://www.slimjet.com/chrome 阅读全文
posted @ 2022-08-10 12:59 Running00 阅读(177) 评论(0) 推荐(0) 编辑
摘要:Js 基础 JavaScript代码执行时,引擎会创造出来当前代码块的执行环境 在涉及到使用变量时,只能查找到当前环境的变量和包含当前执行环境的外部环境变量。全局环境是最外层的执行环境 JavaScript是单线程 JavaScript在处理异步操作时,利用的是事件循环机制 https://html 阅读全文
posted @ 2022-08-09 20:09 Running00 阅读(13) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/fangsmile/articles/11642607.html 阅读全文
posted @ 2022-08-07 16:49 Running00 阅读(7) 评论(0) 推荐(0) 编辑
摘要:1、用CJS引入的是要引入对象的一个拷贝 CJS在浏览器环境中是无效的,它必须要经过编译和打包后才能在浏览器环境中执行。 2、AMD是异步加载模块的。(就像它的名字一样) AMD设计出来是供前端使用的,而CJS刚开始设计的目的是供后端使用的。 AMD的语法没有CJS那样直观。 3、UMD 适用于前端 阅读全文
posted @ 2022-08-06 14:53 Running00 阅读(53) 评论(0) 推荐(0) 编辑
摘要:https://babeljs.io/setup#installation https://www.rollupjs.com/guide/command-line-reference yarn init -y https://babel.dev/docs/en/babel-preset-env // 阅读全文
posted @ 2022-08-05 19:23 Running00 阅读(162) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_34198797/article/details/88028227 阅读全文
posted @ 2022-08-05 14:05 Running00 阅读(2) 评论(0) 推荐(0) 编辑
摘要:https://github.com/vuejs/rfcs/blob/master/active-rfcs/0038-vue3-ie11-support.md 关于 Vue 3 的 IE11 支持: https://zhuanlan.zhihu.com/p/362000763 https://qdm 阅读全文
posted @ 2022-08-05 01:02 Running00 阅读(13) 评论(0) 推荐(0) 编辑
摘要:canvas 学习 https://developer.mozilla.org/zh-CN/docs/Web/API/Canvas_API/Tutorial https://html.spec.whatwg.org/multipage/canvas.html#the-canvas-element 阅读全文
posted @ 2022-08-03 16:29 Running00 阅读(9) 评论(0) 推荐(0) 编辑
摘要:/deep/ selector { // 中间可以直接写类名,如果加了 deep 会无效 } 阅读全文
posted @ 2022-08-03 16:27 Running00 阅读(49) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/leegent/p/9404572.html https://juejin.cn/post/6844903631993454600 https://www.sysuke.com/fe/css/onepx.html https://github.com/ 阅读全文
posted @ 2022-08-03 13:42 Running00 阅读(15) 评论(0) 推荐(0) 编辑
摘要:window.devicePixelRatio Window 接口的devicePixelRatio返回当前显示设备的物理像素分辨率与CSS 像素分辨率之比。 此值也可以解释为像素大小的比率:一个 CSS 像素的大小与一个物理像素的大小。 简单来说,它告诉浏览器应使用多少屏幕实际像素来绘制单个 CS 阅读全文
posted @ 2022-08-02 10:54 Running00 阅读(5) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示