Eggtimer/index.html
author Eugene Ostroukhov <eugeneo@symbian.org>
Tue, 02 Nov 2010 10:44:05 -0700
changeset 2 2da62bb63910
parent 1 8452783e7980
child 3 b43377c07b0c
permissions -rw-r--r--
Minor enhancements
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     2
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     3
<html xmlns="http://www.w3.org/1999/xhtml">
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     4
<head>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     5
<title>Hourglass</title>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     6
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     7
<script language="javascript" type="text/javascript" src="basic.js"></script>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     8
<link rel="stylesheet" href="basic.css" type="text/css" />
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
     9
<meta name="Generator" content="Symbian WRT IDE" />
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    10
</head>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    11
<body onload="javascript:init();">
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    12
<div id="main-window">
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    13
	<div id="remaining-time">
2
2da62bb63910 Minor enhancements
Eugene Ostroukhov <eugeneo@symbian.org>
parents: 1
diff changeset
    14
	<div id="time" ><a href="javascript:showTimerSetup()" id="timervalue">00:00:30</a></div>
0
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    15
	</div>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    16
	<div id="hourglass">
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    17
		<div id="sand">&nbsp;</div>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    18
		<div id="sand-bottom">&nbsp;</div>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    19
		<img src="images/hourglass.png"></img>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    20
	</div>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    21
</div>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    22
<div id="time-setup">
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    23
	Specify time: 
2
2da62bb63910 Minor enhancements
Eugene Ostroukhov <eugeneo@symbian.org>
parents: 1
diff changeset
    24
	<input id="hrs" class="digits" value="00"/>:<input id="min" class="digits" value="00"/>:<input id="sec" class="digits" value="30"/>
0
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    25
	<input type="button" value="Start" onclick="startTimer()"/><input type="button" value="Cancel" onclick="showMainWindow()"/>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    26
</div>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    27
</body>
0b6daedcf7e1 Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff changeset
    28
</html>