1.0.0 • Published 6 years ago

vuejs-picture-zoom v1.0.0

Weekly downloads
8
License
-
Repository
github
Last release
6 years ago

vuejs-picture-zoom

A picture magnifier component for Vue.js 2.x 基于vue2.x的电商图片放大镜插件

Build Setup 使用步骤

# 安装 install
npm install vuejs-picture-zoom --save
# 使用 use
--script
import PicZoom from 'vuejs-picture-zoom'
export default {
  name: 'App',
  components: {
    PicZoom
  }
}

--html
<pic-zoom url="static/imac2.jpg" :scale="3"></pic-zoom>

Config 配置

propsdescribedefault
url图片地址string required
big-url大图地址string null
scale图片放大倍数number 2.5
scroll放大时页面是否可滚动boolean fasle
show-edit是否显示旋转图片按钮boolean fasle

Suggest 注意事项

组件默认是100%的高宽,所以建议将组件包含在一个有固定高宽的容器内。如:

<div class="pic-box"> <!--pic-box:width:500px;height:500px-->
     <pic-zoom url="static/imac2.jpg" :scale="3"></pic-zoom>
</div>

GIF 动画截图

zoom2.gif

Demo 示例

来源

基于vue-piczoom的源码修改。优化了代码和修改的canvas放在的位置。