UNPKG

camedit

Version:

Small JS image editor wrapped around cropperjs

48 lines (26 loc) 1.01 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="./dist/camedit.min.css"> <title>JS Image Editor: Example</title> </head> <body> <header class="flex-default"> <a href="index.html" class="mg-c">CAMEDIT</a> </header> <div class="gallery flex-default w-80 mg-c mg-t-80"> <div class="sample-images w-30"> <img src="./img/pexel-animal-01.jpg" alt="Demo image of an animal from https://www.pexels.com/"> </div> <div class="sample-images w-30"> <img src="./img/pexel-animal-02.jpg" alt="Demo image of an elephant from https://www.pexels.com/"> </div> <div class="sample-images w-30"> <img src="./img/pexel-forest-01.jpg" alt="Demo image of a forest from https://www.pexels.com/"> </div> </div> <div id="editor" class="camedit"></div> </body> <script type="application/javascript" src="./dist/camedit.min.js"></script> </html>