advanced-cropper / vue-advanced-cropper

The advanced vue cropper library that gives you opportunity to create your own croppers suited for any website design
https://advanced-cropper.github.io/vue-advanced-cropper/
Other
931 stars 130 forks source link

Vue3 can not move stencil #219

Closed robertexplodes closed 1 year ago

robertexplodes commented 1 year ago

I am using Vue3 and added this library to my code. I simply can select an image, and also resize the stencil, but I cant move the stencil around. Also the area within the stencil has the same brightness as the image below. When trying to move the stencil only the image will move (Only if zoomed).

image

<cropper stencil-component="rectangle-stencil" class="cropper mt-3"  :src="image" @change="change" />

I globally mounted the RectangleStencil component.

Norserium commented 1 year ago

@robertexplodes, just a guess, do you have somewhere the following styles?

* {
    position: relative;
}
robertexplodes commented 1 year ago

@Norserium thank you, it works now!

Norserium commented 1 year ago

@robertexplodes, you are welcome!