基于vue的电商图片放大镜组件

基于vue的电商图片放大镜组件

站长先生
2022-07-18 / 1 评论 / 427 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2022年07月18日,已超过672天没有更新,若内容或图片失效,请留言反馈。

vue-piczoom

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

Build Setup 使用步骤

# 安装 install
npm install vue-piczoom --save
<template>
  <pic-zoom url="static/imac2.jpg" :scale="3"></pic-zoom>
</template>

# 使用 use
<script>
import PicZoom from 'vue-piczoom'
export default {
  name: 'App',
  components: {
    PicZoom
  }
}
</script>

Config 配置

propsdescribedefault
url图片地址string required
big-url大图地址string null
scale图片放大倍数number 2.5
scroll放大时页面是否可滚动boolean fasle
show-edit是否显示旋转图片按钮boolean fasle
cover-bg鼠标悬停背景色string rgba(0,0,0,0.5)

Suggest 注意事项

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

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

Demo 示例

在线示例

附:组件源码

0

评论 (1)

取消
  1. 头像
    啊啊啊
    Windows 10 · Google Chrome

    求源码谢谢大大

    回复