author | Eugene Ostroukhov <eugeneo@symbian.org> |
Thu, 28 Oct 2010 11:00:31 -0700 | |
changeset 0 | 0b6daedcf7e1 |
child 1 | 8452783e7980 |
permissions | -rw-r--r-- |
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"> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
14 |
<div id="time" ><a href="javascript:showTimerSetup()" id="timervalue">00:00:00</a></div> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
15 |
<div id="pausestart" onclick="pauseStart()"> </div> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
16 |
</div> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
17 |
<div id="hourglass"> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
18 |
<div id="sand"> </div> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
19 |
<div id="sand-bottom"> </div> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
20 |
<img src="images/hourglass.png"></img> |
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> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
23 |
<div id="time-setup"> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
24 |
Specify time: |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
25 |
<input id="hrs" class="digits" value="00"/>:<input id="min" class="digits" value="00"/>:<input id="sec" class="digits" value="00"/> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
26 |
<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
|
27 |
</div> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
28 |
</body> |
0b6daedcf7e1
Initial commit of two sample projects
Eugene Ostroukhov <eugeneo@symbian.org>
parents:
diff
changeset
|
29 |
</html> |