- 博客(6)
- 收藏
- 关注
原创 解决 h5 唤起键盘后,导致了页面偏移。
window.addEventListener('resize', () => { if (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName === 'TEXTAREA') { window.setTimeout(() => { if ('scrollIntoView' in document.activeElement) { document.acti
2020-09-18 13:22:01 1090
原创 node 处理网络图片转 base64
npm install axios , 安装 axios 进行网络请求。npm install btoa , 安装 btoa 模拟浏览器 base64 编码解码。const axios = require('axios')const btoa = require('btoa')axios.get(url, { responseType: 'arraybuffer' }).then(res => { let data = 'data:image/png;base64,' + btoa(ne
2020-09-17 13:56:47 862 1
原创 h5 页面不希望字体跟随系统字体大小时使用
(function() { if (typeof WeixinJSBridge == "object" && typeof WeixinJSBridge.invoke == "function") { handleFontSize(); } else { if (document.addEventListener) { document.addEventListener("WeixinJSBridgeReady", handleFontSize, false); } e
2020-09-17 11:32:01 3701
原创 装饰器的使用
先安装 babel 进行转码babel-corebabel-polyfillbabel-plugin-transform-decorators-legacy配置 .babelrc 文件{ "presets": ["env"], "plugins": ["transform-decorators-legacy"]}根目录下创建 start.js 文件require('babel-core/register')()require('babel-polyfill')require(
2020-08-21 17:20:39 106
原创 flex 布局
flex 布局首先需要为父元素设置 display: flex; 是为了给父元素设置伸缩效果,控制子元素排列方式。display: flex 是由主轴跟垂轴来进行排列的。主轴默认是水平方向从左到右排列,也可以设置成从右到左排列。justify-content 控制主轴排序方式flex-start 左对齐 (默认值)flex-end 右对齐center 居中space-between 两端对齐 (两侧没有边距)space-around 两端对齐 (两侧有边距)垂轴默认是垂直方
2020-08-21 17:19:42 247
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人