cstefanache / angular2-img-cropper

Angular 2 Image Cropper
MIT License
364 stars 135 forks source link

Add option to hide DragMarker #78

Open cleever opened 7 years ago

cleever commented 7 years ago

DragMarker is useful to work with a mouse, but in a mobile app with touch, it isn't the ideal behavior, in terms of usability and design. All the image could be draggable to pan, and the pinch movement that is already implemented, do the zoom.

cleever commented 7 years ago

DragMarker is easly hiden by changing his alpha channel in RGB color.

this.cropperSettings1.cropperDrawSettings.strokeColor = 'rgba(255,255,255,0)';

However, the user need to know the exact point drag the image.

cstefanache commented 7 years ago

What is the exact desired behavior?