-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.66 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 2.66 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Image Annotate — Demos</title>
<link rel="stylesheet" href="demo.css">
</head>
<body>
<nav class="demo-nav">
<span class="nav-title">Image Annotate</span>
<a href="index.html" class="active">Home</a>
<a href="jquery-basics.html">jQuery Basics</a>
<a href="vanilla-basics.html">Vanilla JS</a>
<a href="react.html">React</a>
<a href="vue.html">Vue</a>
<a href="ajax.html">AJAX</a>
<a href="multiple-instances.html">Multiple Instances</a>
<a href="programmatic-api.html">Programmatic API</a>
<a href="custom-labels.html">Custom Labels</a>
<a href="scaling.html">Scaling</a>
</nav>
<div class="demo-content">
<h1>jQuery Image Annotate</h1>
<p>Create Flickr-like comment annotations on images. Draw rectangular regions, add text notes, save and load via AJAX or static data.</p>
<ul class="demo-links">
<li>
<a href="jquery-basics.html">jQuery Basics</a>
<span class="link-desc">Initialize via $.fn.annotateImage() with static notes. Editable vs read-only modes.</span>
</li>
<li>
<a href="vanilla-basics.html">Vanilla JS</a>
<span class="link-desc">Core API without jQuery. Uses annotate() factory function and ES module import.</span>
</li>
<li>
<a href="react.html">React</a>
<span class="link-desc">React 18 component with event callbacks and imperative ref methods.</span>
</li>
<li>
<a href="vue.html">Vue</a>
<span class="link-desc">Vue 3 component with event handling and template ref methods.</span>
</li>
<li>
<a href="ajax.html">AJAX</a>
<span class="link-desc">Load, save, and delete annotations via fetch. Custom error handling.</span>
</li>
<li>
<a href="multiple-instances.html">Multiple Instances</a>
<span class="link-desc">Several annotated images on one page with different configurations.</span>
</li>
<li>
<a href="programmatic-api.html">Programmatic API</a>
<span class="link-desc">Control the plugin via JavaScript: add, clear, load, destroy, reinitialize, export.</span>
</li>
<li>
<a href="custom-labels.html">Custom Labels</a>
<span class="link-desc">Override button labels for internationalization or icon-only mode.</span>
</li>
<li>
<a href="scaling.html">Scaling</a>
<span class="link-desc">Annotations scale automatically with CSS-constrained, explicit-size, and responsive images.</span>
</li>
</ul>
</div>
</body>
</html>