JavaScript almost completely working
[rgbconverter.git] / RGB_Converter.wdgt / Widget.html
1 <!--
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # RGB Converter Widget [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
12 -->
13
14 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
15 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
16 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
17 <head>
18 <title>RGB Conveter $Revision$</title>
19 </head>
20
21 <style type="text/css">
22 @import "Widget.css";
23 </style>
24 <script src="Widget.js" type="text/javascript" />
25
26 <body>
27 <!-- front -->
28 <div id="front" onmousemove="mousemove(event);" onmouseout="mouseexit(event);">
29 <img src="Default.png" alt="" />
30
31 <div id="hexinput">#<input type="text" name="hexinput" id="hexinputf" size="6" maxlength="6" onblur="hexwatcher()" value="0" /></div>
32
33 <div id="swatch"></div>
34
35 <div id="redinput"><input type="text" name="redinput" id="redinputf" style="color: red" size="3" maxlength="3" onblur="rgbwatcher('red')" value="0" /></div>
36 <div id="greeninput"><input type="text" name="greeninput" id="greeninputf" style="color: green" size="3" maxlength="3" onblur="rgbwatcher('green')" value="0" /></div>
37 <div id="blueinput"><input type="text" name="blueinput" id="blueinputf" style="color: blue" size="3" maxlength="3" onblur="rgbwatcher('blue')" value="0" /></div>
38
39 <div class="flip" id="fliprollie"></div>
40 <div class="flip" id="flip" onclick="show_back(event);" onmouseover="enterflip(event);" onmouseout="exitflip(event)";></div>
41 </div>
42 <!-- / front -->
43
44 <!-- back -->
45 <div id="back">
46 <img src="Alternate.png" alt="" />
47
48
49 </div>
50 <!-- / back -->
51 </body>
52 </html>
53
54 <!--
55 /*=====================================================================*\
56 || ###################################################################
57 || # $HeadURL$
58 || # $Id$
59 || ###################################################################
60 \*=====================================================================*/
61 -->