07 2022 档案

摘要:https://semver.org/lang/zh-CN/ https://regex101.com/r/vkijKf/1/ 阅读全文
posted @ 2022-07-31 22:57 Running00 阅读(19) 评论(0) 推荐(0) 编辑
摘要:http://www.ruanyifeng.com/blog/2017/05/css-variables.html 阅读全文
posted @ 2022-07-31 17:57 Running00 阅读(5) 评论(0) 推荐(0) 编辑
摘要:伪类:是添加到选择器的关键字,指定要选择的元素的特殊状态 :hover 伪元素:可被用于为一个元素的 特定部分 应用样式 ::after 设置元素的首字母、首行的样式 在元素的内容之前或之后插入内容 | 选择器 | 例子 | 例子描述 | | | | | | ::after | p::after | 阅读全文
posted @ 2022-07-31 17:45 Running00 阅读(15) 评论(0) 推荐(0) 编辑
摘要:browserstack 阅读全文
posted @ 2022-07-26 19:35 Running00 阅读(26) 评论(0) 推荐(0) 编辑
摘要:技术社区 https://www.zhihu.com/ https://blog.51cto.com/ https://www.cnblogs.com/ https://www.jianshu.com/ https://www.csdn.net/ https://juejin.cn/ https:/ 阅读全文
posted @ 2022-07-26 19:28 Running00 阅读(7) 评论(0) 推荐(0) 编辑
摘要:https://mixpanel.com/trends/ 阅读全文
posted @ 2022-07-26 19:25 Running00 阅读(12) 评论(0) 推荐(0) 编辑
摘要:https://developer.apple.com/support/app-store/ https://developer.apple.com/cn/support/app-store/ 阅读全文
posted @ 2022-07-26 19:23 Running00 阅读(24) 评论(0) 推荐(0) 编辑
摘要:react-player 阅读全文
posted @ 2022-07-25 15:58 Running00 阅读(7) 评论(0) 推荐(0) 编辑
摘要:lucky-canvas 阅读全文
posted @ 2022-07-25 15:56 Running00 阅读(124) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/a460550542/article/details/123091423 阅读全文
posted @ 2022-07-22 20:10 Running00 阅读(8) 评论(0) 推荐(0) 编辑
摘要:https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/font 阅读全文
posted @ 2022-07-22 19:02 Running00 阅读(5) 评论(0) 推荐(0) 编辑
摘要:绘制图片 const ctx = uni.createCanvasContext('canvas'); canvas 坐标,左上角 ctx.drawImage(图片地址,图片坐标x, 图片坐标y,图片尺寸宽度,图片尺寸高度) clip() 方法从原始画布中剪切任意形状和尺寸。 提示:一旦剪切了某个区 阅读全文
posted @ 2022-07-22 16:11 Running00 阅读(71) 评论(0) 推荐(0) 编辑
摘要:better-scroll列表滚动优化 阅读全文
posted @ 2022-07-22 15:14 Running00 阅读(6) 评论(0) 推荐(0) 编辑
摘要:MQTT 和 WebSocket 都是应用层协议 阅读全文
posted @ 2022-07-22 15:12 Running00 阅读(6) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zz_jesse/article/details/115222569 阅读全文
posted @ 2022-07-20 14:18 Running00 阅读(11) 评论(0) 推荐(0) 编辑
摘要:https://github.com/ant-design/html2sketch 阅读全文
posted @ 2022-07-20 13:13 Running00 阅读(32) 评论(0) 推荐(0) 编辑
摘要:imgcook 阅读全文
posted @ 2022-07-20 13:12 Running00 阅读(9) 评论(0) 推荐(0) 编辑
摘要:rrweb 阅读全文
posted @ 2022-07-20 13:10 Running00 阅读(3) 评论(0) 推荐(0) 编辑
摘要:h5 页面横屏 -webkit-text-size-adjust: 100%; 解决横屏字体变大问题 阅读全文
posted @ 2022-07-19 16:30 Running00 阅读(24) 评论(0) 推荐(0) 编辑
摘要:/* 横屏 */ @media only screen and (orientation: landscape) { } 阅读全文
posted @ 2022-07-19 15:49 Running00 阅读(150) 评论(0) 推荐(0) 编辑
摘要:vite.config.js , import.meta.env undefined import {defineConfig, loadEnv} from 'vite'; export default defineConfig(({ command, mode }) => { // 根据当前工作目 阅读全文
posted @ 2022-07-15 16:51 Running00 阅读(172) 评论(0) 推荐(0) 编辑
摘要:background: 传入参数 background: url('@{url}/statics/icon.png'); 阅读全文
posted @ 2022-07-15 12:49 Running00 阅读(5) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/huangcong/p/9517123.html 阅读全文
posted @ 2022-07-14 13:40 Running00 阅读(3) 评论(0) 推荐(0) 编辑
摘要:非根目录配置 1、vite配置文件中base:'/test' 绝对路径 2、createWebHistory:createWebHistory('/test') 绝对路径 3、nginx location /test { try_files $uri $uri/ /test/index.html; 阅读全文
posted @ 2022-07-13 16:40 Running00 阅读(455) 评论(0) 推荐(0) 编辑
摘要:将所以的\n换行符号替换为'' str.replace(/\n/g, '') 阅读全文
posted @ 2022-07-12 19:40 Running00 阅读(68) 评论(0) 推荐(0) 编辑
摘要:情况一:"ECONNABORTED" : 超时,外网访问 情况二:404 vite server 本地未配置代理 情况三:断网 阅读全文
posted @ 2022-07-07 00:54 Running00 阅读(222) 评论(0) 推荐(0) 编辑
摘要:"ECONNABORTED" : 超时,外网访问 404 vite server 本地未配置代理 阅读全文
posted @ 2022-07-07 00:52 Running00 阅读(25) 评论(0) 推荐(0) 编辑
摘要:uni.request 1、断网,情况发请求 {"errMsg":"request:fail"} 2、超时 {"errMsg":"request:fail timeout"} 模拟超时: chrome 控制台,network, 点击add,填写之后 可以模拟超时 阅读全文
posted @ 2022-07-06 20:39 Running00 阅读(379) 评论(0) 推荐(0) 编辑
摘要:ref reactive 阅读全文
posted @ 2022-07-06 14:21 Running00 阅读(101) 评论(0) 推荐(0) 编辑
摘要:node 阅读全文
posted @ 2022-07-05 22:59 Running00 阅读(28) 评论(0) 推荐(0) 编辑
摘要:https://router.vuejs.org/zh/introduction.html https://router.vuejs.org/zh/guide/migration/index.html#%E6%96%B0%E7%9A%84-history-%E9%85%8D%E7%BD%AE%E5% 阅读全文
posted @ 2022-07-05 17:30 Running00 阅读(59) 评论(0) 推荐(0) 编辑
摘要:分包 npx degit dcloudio/uni-preset-vue#vite my-vue3-project 运行失败 vue create -p dcloudio/uni-preset-vue my-project 创建失败@vue/cli 5.x @vue/cli 4.x创建成功 yarn 阅读全文
posted @ 2022-07-05 17:03 Running00 阅读(414) 评论(0) 推荐(0) 编辑
摘要:地址:https://v3.cn.vuejs.org/guide/installation.html cli:https://v3.cn.vuejs.org/guide/installation.html#%E5%91%BD%E4%BB%A4%E8%A1%8C%E5%B7%A5%E5%85%B7-c 阅读全文
posted @ 2022-07-04 11:36 Running00 阅读(60) 评论(0) 推荐(0) 编辑
摘要:https://baike.baidu.com/item/%E4%BA%BA%E6%9C%88%E7%A5%9E%E8%AF%9D/7531243?fr=aladdin 阅读全文
posted @ 2022-07-01 11:46 Running00 阅读(9) 评论(0) 推荐(0) 编辑
摘要:https://baike.baidu.com/item/%E7%A8%8B%E5%BA%8F%E5%91%98%E4%BF%AE%E7%82%BC%E4%B9%8B%E9%81%93%E2%80%94%E2%80%94%E4%BB%8E%E5%B0%8F%E5%B7%A5%E5%88%B0%E4% 阅读全文
posted @ 2022-07-01 11:40 Running00 阅读(37) 评论(0) 推荐(0) 编辑
摘要:https://baike.baidu.com/item/%E7%A8%8B%E5%BA%8F%E5%91%98%E5%81%A5%E5%BA%B7%E6%8C%87%E5%8D%97/18627529?fr=aladdin 阅读全文
posted @ 2022-07-01 11:35 Running00 阅读(14) 评论(0) 推荐(0) 编辑
摘要:https://baike.baidu.com/item/%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E7%9A%84201%E4%B8%AA%E5%8E%9F%E5%88%99/59093769?fr=aladdin 阅读全文
posted @ 2022-07-01 11:33 Running00 阅读(27) 评论(0) 推荐(0) 编辑

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