Guide
Install
npm
npm install vue-magnifier-plus
# or
yarn add vue-magnifier-plus
import VueMagnifierPlus from 'vue-magnifier-plus'
import 'vue-magnifier-plus/dist/style/vue-magnifier-plus.css'
export default {
components: {
VueMagnifierPlus,
},
}
cdn
<script src="https://cdn.jsdelivr.net/npm/vue-magnifier-plus/dist/vue-magnifier-plus.global.js"></script>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/npm/vue-magnifier-plus/dist/style/vue-magnifier-plus.css"
/>
new Vue({
el: '#app',
components: {
VueMagnifierPlus: VueMagnifierPlus.default
}
}
Usage
Image
<vue-magnifier-plus :url="imgUrl" :high-url="imgHighUrl"> </vue-magnifier-plus>
Customize Image
<vue-magnifier-plus :high-url="imgHighUrl">
<img :src="imgUrl" style="height:200px" />
</vue-magnifier-plus>
Tips: If your image is not loaded at the beginning and set
disabled-reactive
, you must manually listen for the event when the image is loaded before displaying it.
<vue-magnifier-plus v-if="loaded" :high-url="imgHighUrl" disabled-reactive>
<img :src="imgUrl" style="height:200px" />
</vue-magnifier-plus>
export deafult{
data(){
return {
loaded: false,
imgUrl: ''
}
},
created(){
const img = new Image()
img.src = imgUrl
img.addEventListener('load', ()=>{
this.loaded = true
})
}
}
Customize preview area
You can use any element to represent the preview area.
<vue-magnifier-plus :high-url="imgHighUrl">
<div style="width:100px; height: 200px"></div>
</vue-magnifier-plus>
Customize zoom area
<vue-magnifier-plus>
<template #zoomer>
<!-- Is the same as the canvas-1 -->
<canvas id="canvas-2" width="100" height="100"></canvas>
</template>
<canvas id="canvas-1" width="100" height="100"></canvas>
</vue-magnifier-plus>
const canvas1 = document.querySelector('#canvas-1')
const canvas2 = document.querySelector('#canvas-2')
const ctx1 = canvas1.getContext('2d')
const ctx2 = canvas2.getContext('2d')
const offscreenCanvas = document.createElement('canvas')
const ctx = offscreenCanvas.getContext('2d')
offscreenCanvas.width = 100
offscreenCanvas.height = 100
ctx.font = '30px Arial'
ctx.fillText('Hello World', 10, 50)
ctx1.drawImage(offscreenCanvas, 0, 0)
ctx2.drawImage(offscreenCanvas, 0, 0)