summaryrefslogtreecommitdiff
path: root/javascript/examples/toc.html
diff options
context:
space:
mode:
authorThomas Keil <tkeil (at) datacrystal (dot) de>2007-01-04 22:29:18 +0000
committerThomas Keil <tkeil (at) datacrystal (dot) de>2007-01-04 22:29:18 +0000
commit710c48f908290c52b93e57e29741fcd0696b2d22 (patch)
treecefaa11c5d529041a64ec793cecf95d13c48e242 /javascript/examples/toc.html
parentd4d1dec8f3f204ad0d7abac3b553c5023a4324bd (diff)
downloadvdr-plugin-live-710c48f908290c52b93e57e29741fcd0696b2d22.tar.gz
vdr-plugin-live-710c48f908290c52b93e57e29741fcd0696b2d22.tar.bz2
*** empty log message ***
Diffstat (limited to 'javascript/examples/toc.html')
-rw-r--r--javascript/examples/toc.html89
1 files changed, 89 insertions, 0 deletions
diff --git a/javascript/examples/toc.html b/javascript/examples/toc.html
new file mode 100644
index 0000000..d2936bf
--- /dev/null
+++ b/javascript/examples/toc.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
+ "http://www.w3.org/TR/REC-html40/strict.dtd">
+ <head>
+ <title>[DOM Tooltip] Table of Contents</title>
+ <style>
+@import url(example.css);
+ </style>
+ </head>
+ <body>
+ <div class="title">Table of Contents</div>
+ <div class="main">
+ <ol>
+ <li><a href="example1.html">Example 1: Native Tooltip</a></li>
+ <ol type="a">
+ <li>Browser tooltip using title attribute</li>
+ <li>Basic mouseover tooltip using domTT</li>
+ </ol>
+ <li><a href="example2.html">Example 2: Basic Features</a></li>
+ <ol type="a">
+ <li>Status text</li>
+ <li>Trailing the mouse</li>
+ <li>Directionality</li>
+ </ol>
+ <li><a href="example3.html">Example 3: Styled Tooltips</a></li>
+ <ol type="a">
+ <li>Overlib style</li>
+ <li>Tooltip with caption</li>
+ <li>Nicetitles style</li>
+ </ol>
+ <li><a href="example4.html">Example 4: Behavior Options</a></li>
+ <ol type="a">
+ <li>Sticky tooltip</li>
+ <li>Custom close link</li>
+ <li>Velcro tooltip</li>
+ <li>Form field tooltip</li>
+ </ol>
+ <li><a href="example5.html">Example 5: Advanced Features</a></li>
+ <ol type="a">
+ <li>Snap to grid</li>
+ <li>Tooltip alpha fading</li>
+ <li>Lazy (drunk) tooltip</li>
+ </ol>
+ <li><a href="example6.html">Example 6: Special Content</a></li>
+ <ol type="a">
+ <li>Image in tooltip content</li>
+ <li>Inline window</li>
+ </ol>
+ <li><a href="example7.html">Example 7: Object Detection</a></li>
+ <ol type="a">
+ <li>select form element detection</li>
+ <li>flash detection (not yet demonstrated)</li>
+ </ol>
+ <li><a href="example8.html">Example 8: Custom Context Menu</a></li>
+ <ol type="a">
+ <li>Menu on right click</li>
+ <li>Menu on CTRL-click</li>
+ </ol>
+ <li><a href="example9.html">Example 9: Auto-Generated Tips</a></li>
+ <ol type="a">
+ <li>Nicetitles example with plain text</li>
+ <li>Nicetitles example with link text</li>
+ </ol>
+ <li><a href="example10.html">Example 10: Onload PopIn</a></li>
+ <ol type="a">
+ <li>Popup with embedded image on page load</li>
+ <li>Popup with custom close link on page load with delay</li>
+ </ol>
+ <li><a href="example11.html">Example 11: Tooltip In IFrame</a></li>
+ <ol type="a">
+ <li>Tooltip from within a frame</li>
+ </ol>
+ <li><a href="example12.html">Example 12: Dynamic Tooltips</a></li>
+ <ol type="a">
+ <li>Dynamic content on tooltip creation</li>
+ <li>Dynamic update of content on existing tooltip</li>
+ </ol>
+ <li><a href="example13.html">Example 13: Nested Tooltips</a></li>
+ <ol type="a">
+ <li>Greasy tooltip from within a velcro tooltip</li>
+ </ol>
+ <li><a href="example14.html">Example 14: Positioning</a></li>
+ <ol type="a">
+ <li>Custom positioning of tooltips</li>
+ </ol>
+ </ol>
+ </div>
+ <div style="float: left;"><a href="index.html">&#171;Index</a></div><div style="float: right;"><a href="example1.html">Example 1&#187;</a></div>
+ </body>
+</html>