- 博客(5)
- 收藏
- 关注
原创 canvas实现一键下载图片
下载图片可以使用a标签的download属性,a标签的href设置想要下载的图片路径<a href="" id="download" download=""></a>canvas转base64var canvas = document.getElementById('canvas'), ctx = canvas.getContext('2d')va...
2018-11-30 10:30:34
2421
转载 webpack+babel
首先安装babel所需要的loadernpm install --save-dev babel-loader babel-core babel-preset-env在webpack.config.js中配置babelmodule : { rules : [ { test : /\.js$/, ...
2018-11-29 22:06:37
182
转载 css 多行和单行文本超出隐藏
单行 overflow: hidden;text-overflow: ellipsis;white-space: nowrap; 多行 overflow : hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2; // 行数-webkit-box-orient: vertic...
2018-11-08 18:03:42
1404
原创 小程序获取元素的一些属性
let query = wx.createSelectorQuery() query.select('#canvas').boundingClientRect(res => { this.canvasWidth = Math.round(res.width) this.canvasHeight = Math.round(res.hei...
2018-11-08 17:59:21
4024
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅