vue实现移动端图片裁剪上传功能

前端之家收集整理的这篇文章主要介绍了vue实现移动端图片裁剪上传功能前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例为大家分享了vue移动端图片裁剪上传的具体代码,供大家参考,具体内容如下

1. 安装cropperjs依赖库

2. 编写组件SimpleCropper.vue

<style lang="less">
.v-simple-cropper {
.file {
display: none;
}
.v-cropper-layer {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #fff;
z-index: 99999;
display: none;
.layer-header {
position: absolute;
top: 0;
left: 0;
z-index: 99999;
background: #fff;
width: 100%;
height: .8rem;
padding: 0 .2rem;
Box-sizing: border-Box;
}
.cancel,.confirm {
line-height: .8rem;
font-size: .28rem;
background: inherit;
border: 0;
outline: 0;
float: left;
}
.confirm {
float: right;
}
img {
position: inherit!important;
border-radius: inherit!important;
float: inherit!important;
}
}
}

3. 引用组件

4. 示例图

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/37210.html

猜你在找的Vue相关文章