mrazvan21 / image-crop-plugin

A simple jQuery image cropping plugin.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A simple jQuery image cropping plugin.

Image Crop Plugin

Features

Getting started

Installation

Include files:

<script src="/path/to/jquery.js"></script><!-- jQuery is required -->
<link  href="/path/to/image-crop.css" rel="stylesheet">
<script src="/path/to/image-crop.js"></script>

Usage

<div class="crop-main">
    <div style="width: 600px; height: 300px;" class="crop-container">
        <img src="test.JPG" class="crop-img">
    </div>
</div>
$(".crop-main").imageCrop();
or
$('.crop-main').imageCrop({
    offsetLeft: 20,
    offsetRight: 30,
    offsetTop: 20,
    offsetBottom: 50
});

About

A simple jQuery image cropping plugin.


Languages

Language:JavaScript 80.4%Language:CSS 14.5%Language:HTML 5.1%