Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
||
| 3 | <head> |
||
| 4 | <title>Hello World | Jcrop Demo</title> |
||
| 5 | <meta http-equiv="Content-type" content="text/html;charset=UTF-8" /> |
||
| 6 | |||
| 7 | <script src="../js/jquery.min.js"></script> |
||
| 8 | <script src="../js/jquery.Jcrop.js"></script> |
||
| 9 | <script type="text/javascript"> |
||
| 10 | jQuery(function($){ |
||
| 11 | |||
| 12 | // How easy is this?? |
||
| 13 | $('#target').Jcrop(); |
||
| 14 | |||
| 15 | }); |
||
| 16 | |||
| 17 | </script> |
||
| 18 | <link rel="stylesheet" href="demo_files/main.css" type="text/css" /> |
||
| 19 | <link rel="stylesheet" href="demo_files/demos.css" type="text/css" /> |
||
| 20 | <link rel="stylesheet" href="../css/jquery.Jcrop.css" type="text/css" /> |
||
| 21 | |||
| 22 | </head> |
||
| 23 | <body> |
||
| 24 | |||
| 25 | <div class="container"> |
||
| 26 | <div class="row"> |
||
| 27 | <div class="span12"> |
||
| 28 | <div class="jc-demo-box"> |
||
| 29 | |||
| 30 | <div class="page-header"> |
||
| 31 | <ul class="breadcrumb first"> |
||
| 32 | <li><a href="../index.html">Jcrop</a> <span class="divider">/</span></li> |
||
| 33 | <li><a href="../index.html">Demos</a> <span class="divider">/</span></li> |
||
| 34 | <li class="active">Hello World</li> |
||
| 35 | </ul> |
||
| 36 | <h1>Hello World</h1> |
||
| 37 | </div> |
||
| 38 | |||
| 39 | <img src="demo_files/sago.jpg" id="target" alt="[Jcrop Example]" /> |
||
| 40 | |||
| 41 | <div class="description"> |
||
| 42 | <p> |
||
| 43 | <b>This example demonstrates the default behavior of Jcrop.</b><br /> |
||
| 44 | Since no event handlers have been attached it only performs |
||
| 45 | the cropping behavior. |
||
| 46 | </p> |
||
| 47 | </div> |
||
| 48 | |||
| 49 | <div class="tapmodo-footer"> |
||
| 50 | <a href="http://tapmodo.com" class="tapmodo-logo segment">tapmodo.com</a> |
||
| 51 | <div class="segment"><b>© 2008-2013 Tapmodo Interactive LLC</b><br /> |
||
| 52 | Jcrop is free software released under <a href="../MIT-LICENSE.txt">MIT License</a> |
||
| 53 | </div> |
||
| 54 | </div> |
||
| 55 | |||
| 56 | <div class="clearfix"></div> |
||
| 57 | |||
| 58 | </div> |
||
| 59 | </div> |
||
| 60 | </div> |
||
| 61 | </div> |
||
| 62 | |||
| 63 | </body> |
||
| 64 | </html> |
||
| 65 |