root/mochikit/branches/scriptaculous/examples/color_wheel/index.html

Revision 385, 1.3 kB (checked in by bob, 3 years ago)

Renamed getElementsComputedStyle to getComputedStyle and moved
it from MochiKit.Visual to MochiKit.DOM

Moved all color support out of MochiKit.Visual and into MochiKit.Color

  • Property svn:mime-type set to text/html
  • Property svn:eol-style set to native
Line 
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html>
3     <head>
4         <title>Demo of MochiKit.Color</title>
5         <link href="color_wheel.css" rel="stylesheet" type="text/css" />
6         <script type="text/javascript" src="../../MochiKit/MochiKit.js"></script>
7         <script type="text/javascript" src="color_wheel.js"></script>
8     </head>
9     <body>
10         <h1>Color Wheel</h1>
11         <div id="docs">
12             Animated visualization of all the CSS3 colors by:
13             hue (angle), saturation (distance), luminance (time/alpha).
14             <br />
15             Uses <a href="http://mochikit.com/">MochiKit</a>'s
16             <a href="../../doc/html/MochiKit/Color.html">MochiKit.Color</a>,
17             <a href="../../doc/html/MochiKit/DOM.html">MochiKit.DOM</a>,
18             and <a href="../../doc/html/MochiKit/Async.html">MochiKit.Async</a>.
19         </div>
20         <div id="source">
21             View Source: [
22                 <a href="index.html" class="view-source">index.html</a> |
23                 <a href="color_wheel.js" class="view-source">color_wheel.js</a>
24             ]
25         </div>
26
27         <div id="color_wheel_container">
28             <div id="color_wheel" />
29         </div>
30     </body>
31 </html>
Note: See TracBrowser for help on using the browser.