image-components / ImageCrop4Mobile

A minimalist image cropping widget for mobile web

Home Page:http://image-components.github.io/ImageCrop4Mobile/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ImageCrop4Mobile

ImageCrop4Mobile is a minimalist image cropping widget with no dependences for mobile web.

Online Demo

Online Demo

Usage

var ic = new ImageCrop(document.querySelector('.container'), './mei.jpg', {
  
  /* crop size */
  size: 200,
  
  /*
   If true, the crop area will be rendered as an ellipse
   instead of a rectangle.
   */
  circle: true,
  
  onChanged: function(areaInfo) {
    console.log(areaInfo);
  }
  
});

About

A minimalist image cropping widget for mobile web

http://image-components.github.io/ImageCrop4Mobile/

License:MIT License


Languages

Language:JavaScript 94.0%Language:HTML 5.1%Language:CSS 0.9%