-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Image Crop Demo</title>
<link rel="stylesheet" href="./bower_components/jQuery-crop-ie6/jquery.crop.css"/>
<link rel="stylesheet" href="./css/imageCropper.css"/>
<script type="text/javascript" src="./bower_components/simple-rangeslider/libs/jquery/jquery.js"></script>
<script type="text/javascript" src="./bower_components/simple-rangeslider/dist/jquery.simple-rangeslider.js"></script>
<script type="text/javascript" src="./bower_components/jQuery-crop-ie6/jquery.crop.js"></script>
<script type="text/javascript" src="./bower_components/jQuery-crop-ie6/jquery.mousewheel.js"></script>
<script type="text/javascript" src="./src/imageCropper.js"></script>
</head>
<body>
<div class="cropper"></div>
<script type="text/javascript">
var imageCropper = new ImageCropper($('.cropper'), {
width: 500,
height: 500,
cropWidth: 400,
cropHeight: 400
});
imageCropper.setImage('./bower_components/jQuery-crop-ie6/beach.jpg', 1200, 799);
</script>
</body>
</html>