摘要: css等级的定义如下: 阅读全文
posted @ 2018-03-26 10:52 炫冰G爱 阅读(133) 评论(0) 推荐(0) 编辑
摘要: //步骤一:css上定义伪元素: .clearfix:before,.clearfix:after { content: ""; display: block; clear: both; } //步骤二:在父级加入类名"clearfix"即可实现清楚浮动的效果 阅读全文
posted @ 2018-03-26 10:24 炫冰G爱 阅读(3349) 评论(0) 推荐(0) 编辑
摘要: //案例一 axios:设置返回数据格式为blob或者arraybuffer 如: var instance = axios.create({ ... //一些配置 responseType: 'blob', //返回数据的格式,可选值为arraybuffer,blob,document,json,text,stream,默认值为json }) ... 阅读全文
posted @ 2018-03-22 10:00 炫冰G爱 阅读(9513) 评论(0) 推荐(1) 编辑
摘要: Document 阅读全文
posted @ 2018-03-20 20:26 炫冰G爱 阅读(3874) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html> <head> <title>test</title> </head> <body> <input type="file" id="fileUpload"> <button id="submit">点击上传文件</button> <script src="j 阅读全文
posted @ 2018-03-20 13:56 炫冰G爱 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 方法的定义: getCompressBase64(img, ratio){//img为通过"document.getElementByTagName('input[type=file]')[0]"拿到的图片blog对象, 压缩率ratio范围为0-1 if(Object.prototype.toSt 阅读全文
posted @ 2018-03-20 10:57 炫冰G爱 阅读(521) 评论(0) 推荐(0) 编辑
摘要: function getBase64(url){ //通过构造函数来创建的 img 实例,在赋予 src 值后就会立刻下载图片,相比 createElement() 创建 <img> 省去了 append(),也就避免了文档冗余和污染 var Img = new Image(); var dataU 阅读全文
posted @ 2018-03-20 10:31 炫冰G爱 阅读(975) 评论(0) 推荐(0) 编辑
摘要: 1 // 创建一个FileReader对象 2 var reader = new FileReader(); 3 4 // 绑定load事件 5 reader.onload = function(e) { 6 console.log(e.target.result); 7 } 8 9 // 读取Fi 阅读全文
posted @ 2018-03-20 09:54 炫冰G爱 阅读(2228) 评论(0) 推荐(0) 编辑