1.0.0 • Published 6 years ago

vue-picturezoom v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

vue-picturezoom 基于 vue-piczoom

基于 vue-piczoom 项目修改

所有权限归原作者所有

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

Build Setup 使用步骤

# 安装 install
yarn add vue-picturezoom --save
# 使用 use
--script
import ImageZoom from 'vue-picturezoom'
export default {
  name: 'App',
  components: {
    ImageZoom
  }
}

--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
positionbox基于此父元素定位string #ID required

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 示例

在线示例

Modify 修改

Jeffery G.