Shrunk widget size
[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
25 <script src="Widget.js" type="text/javascript" />
26 <script src="file:///System/Library/WidgetResources/button/genericButton.js" type="text/javascript" />
27
28 <body onload="setup()">
29 <!-- front -->
30 <div id="front" onmousemove="mousemove(event);" onmouseout="mouseexit(event);">
31 <img src="Default.png" alt="" />
32
33 <div id="hexinput">HEX Code <input type="text" name="hexinput" id="hexinputf" size="6" maxlength="6" onblur="hexwatcher()" value="000000" /></div>
34
35 <div id="swatch"></div>
36
37 <div id="redinput"><input type="text" name="redinput" id="redinputf" style="color: red" size="3" maxlength="3" onblur="rgbwatcher('red')" value="0" /></div>
38 <div id="greeninput"><input type="text" name="greeninput" id="greeninputf" style="color: green" size="3" maxlength="3" onblur="rgbwatcher('green')" value="0" /></div>
39 <div id="blueinput"><input type="text" name="blueinput" id="blueinputf" style="color: blue" size="3" maxlength="3" onblur="rgbwatcher('blue')" value="0" /></div>
40
41 <div class="flip" id="fliprollie"></div>
42 <div class="flip" id="flip" onclick="show_back(event);" onmouseover="enterflip(event);" onmouseout="exitflip(event)";></div>
43 </div>
44 <!-- / front -->
45
46 <!-- back -->
47 <div id="back">
48 <img src="Alternate.png" alt="" />
49
50 <div id="backtext">
51 <strong style="font-size: 12px">RGB Converter</strong>
52 <div>v[#]version[#] ($Revision$)</div>
53 <div>&copy;2002-[#]year[#] <a href="javascript:widget.openURL('http://www.iris-studios.com')">Iris Studios, Inc</a><div>
54 </div>
55
56 <div id="backbutton"></div>
57 </div>
58 <!-- / back -->
59 </body>
60 </html>
61
62 <!--
63 /*=====================================================================*\
64 || ###################################################################
65 || # $HeadURL$
66 || # $Id$
67 || ###################################################################
68 \*=====================================================================*/
69 -->