Widget now works in basic form
[rgbconverter.git] / RGB_Converter / 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 class="flip" id="fliprollie"></div>
32 <div class="flip" id="flip" onclick="show_back(event);" onmouseover="enterflip(event);" onmouseout="exitflip(event)";></div>
33 </div>
34 <!-- / front -->
35
36 <!-- back -->
37 <div id="back">
38 <img src="Alternate.png" alt="" />
39 </div>
40 <!-- / back -->
41
42 </body>
43 </html>
44
45 <!--
46 /*=====================================================================*\
47 || ###################################################################
48 || # $HeadURL$
49 || # $Id$
50 || ###################################################################
51 \*=====================================================================*/
52 -->