Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
jczzq committed Jul 19, 2019
1 parent f088f46 commit 30a40ce
Showing 1 changed file with 30 additions and 18 deletions.
48 changes: 30 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# vue-image-crop
基于Vue的移动端图片裁剪组件

基于 Vue 的移动端图片裁剪组件

> 组件使用`URL.createObjectURL()`等新特性,使用前注意兼容问题。IE >= 10
## 功能预览

![预览](public/mic.png)![裁剪](public/mic2.png)

## 快速开始
安装Node >= `8.9.0`(推荐LTS = `8.11.0`

安装 Node >= `8.9.0`(推荐 LTS = `8.11.0`

```
# 安装 vue-cli 3.x
npm install -g @vue/cli
Expand All @@ -15,34 +20,41 @@ cd vue-image-crop
npm install
npm run dev
```

启动开发模式即可定制功能

## 构建

```
npm run build
```
build之后会重新生成lib文件夹

build 之后会重新生成 lib 文件夹

## API

### props
| 属性名 | 类型 | 默认值 | 说明 |
| -- | -- | -- | -- |
| value | Object | {} |裁剪后的图片对象;必传;可使用v-model绑定|
| proportion | Object | { w: 2, h: 1 } |图片宽高比例对象;非必传;用于动态计算宽高比例,所以w和h两个属性没有固定值|
| quality | Number | 0.92 |清晰度;非必传;[HTMLCanvasElement.toDataURL()](https://developer.mozilla.org/zh-CN/docs/Web/API/HTMLCanvasElement/toDataURL)的第二个参数|
| hasRemove | Boolean | false |是否显示移除按钮;非必传;列表中使用时可能会用到|
| skipCrop | Boolean | false |是否直接上传;非必传;设置为true的时候图片将不会裁剪直接返回|
| config | Object | { size: 1200, isSlice: true, path: null } |配置对象;此对象不传有默认值,若传时对象里的每个属性都必须传;size:图片最大宽度(px),isSlice:是否需要裁剪,path:显示图片时的路径,path参数将直接与图片id拼接(path + id)|

| 属性名 | 类型 | 默认值 | 说明 |
| ---------- | ------- | ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| value | Object | {} | 裁剪后的图片对象;必传;可使用 v-model 绑定 |
| proportion | Object | { w: 2, h: 1 } | 图片宽高比例对象;非必传;用于动态计算宽高比例,所以 w 和 h 两个属性没有固定值 |
| quality | Number | 0.92 | 清晰度;非必传;[HTMLCanvasElement.toDataURL()](https://developer.mozilla.org/zh-CN/docs/Web/API/HTMLCanvasElement/toDataURL)的第二个参数 |
| hasRemove | Boolean | false | 是否显示移除按钮;非必传;列表中使用时可能会用到 |
| skipCrop | Boolean | false | 是否直接上传;非必传;设置为 true 的时候图片将不会裁剪直接返回 |
| config | Object | { size: 1200, isSlice: true, path: null } | 配置对象;此对象不传有默认值,若传时对象里的每个属性都必须传;size:图片最大宽度(px),isSlice:是否需要裁剪,path:显示图片时的路径,path 参数将直接与图片 id 拼接(path + id) |

### events
| 事件名 | 说明 | 回调参数 |
| -- | -- | -- |
| remove | 移除按钮被点击时触发 | - |
| change | 改变选中图片时触发 | event.target.files[0],新文件 |
| submit | 图片操作完成时触发 | 当前裁剪后的图片对象 |
| cancel | 图片操作取消时触发 | - |

| 事件名 | 说明 | 回调参数 |
| ------ | -------------------- | ----------------------------- |
| remove | 移除按钮被点击时触发 | - |
| change | 改变选中图片时触发 | event.target.files[0],新文件 |
| submit | 图片操作完成时触发 | 当前裁剪后的图片对象 |
| cancel | 图片操作取消时触发 | - |

## 示例代码

```
<template>
<div class="ctnr">
Expand Down Expand Up @@ -129,4 +141,4 @@ body {
}
}
</style>
```
```

0 comments on commit 30a40ce

Please sign in to comment.