-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.html
31 lines (31 loc) · 1.31 KB
/
test.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
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://dev.mavo.io/dist/mavo.css">
<title>Cropper tests</title>
<style>
[property*="image"],
video,
audio {
width: 30em;
border: 1px solid yellowgreen;
}
</style>
</head>
<body>
<main mv-app="cropperDemo" mv-storage="https://github.com/DmitrySharabin">
<!-- <img src="http://foliotek.github.io/Croppie/demo/demo-2.jpg" property="image"> -->
<!-- <img src="https://fengyuanchen.github.io/cropperjs/images/picture.jpg" property="image"> -->
<img src="" property="image">
<img src="" property="image1" mv-cropper-options="autoCrop, aspectRatio: 1.6">
<!-- <img src="https://fengyuanchen.github.io/cropperjs/images/picture.jpg" property="image1" mv-cropper-options="autoCrop, aspectRatio: 1.6"> -->
<!-- <img src="https://fengyuanchen.github.io/cropperjs/images/picture.jpg" property="image2"> -->
<!-- <video src="" property="track"></video> -->
</main>
<script src="https://dev.mavo.io/dist/mavo.min.js"></script>
<script src="mavo-cropper.js"></script>
</body>
</html>