Giter Site home page Giter Site logo

vue-image-magnifier's Introduction

vue-image-magnifier

setup

npm install vue-image-magnifier

use

import ImageMagnifier from vue-image-magnifier
Vue.use(ImageMagnifier)
//or
import {ImageMagnifier} from vue-image-magnifier

demo

npm run demo

live example

code open

vue-image-magnifier's People

Contributors

anthinkingcoder avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

vue-image-magnifier's Issues

Zoom Level

There is no way to change the zoom level. Such as zoom-level="1.5" to be 150% the source image height/width. Would be useful.

Alt Text for the image

It will be really useful if we can set the alt text for both the <img> elements inside image-magnifier and image-magnifier__zoom classes by passing a single prop to image-magnifier component.

Mouse move only shows bottom of image on zoom when scrolling

To fix it you should change the
e.pageX and e.pageY of the handleMove function to e.clientX and e.clientY

ex:

handleMove: function (e) {
                this.maskX = this.outXCheck(e.clientX - this.imgRect.left);
                this.maskY = this.outYCheck(e.clientY - this.imgRect.top);
                this.zoomLeft = this.imgRect.width + 10;

                // 计算大图偏移量
                this.zoomPosition.x = this.maskX * (this.zoomImgWidth / this.imgRect.width);
                this.zoomPosition.y = this.maskY * (this.zoomImgHeight / this.imgRect.height);
            }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.