forked from catoostrophe/Notation-ECE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (69 loc) · 5.09 KB
/
Copy pathindex.html
File metadata and controls
88 lines (69 loc) · 5.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<html style="height:100%;">
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="materialize/css/materialize.min.css" media="screen,projection"/>
<!--Cutomization-->
<link type="text/css" rel="stylesheet" href="viking.css"/>
<script src="viking.js"></script>
</head>
<body style="font-family:bariol;background-color:#f9f9f9;padding:0px;margin:0px;height:100%;">
<table>
<tr>
<td colspan="2"><div style="text-align:justify;padding:10px 20px 10px 20px;font-size:70%;color:#F44336;"><b>ATTENTION</b> Cette application n'est pas une application officielle. A ne pas utiliser pour des examens officiels. Il s'agit d'une application développée par des élèves de l'option ICN Première du Lycée Français International de Hong Kong. La note calculée correspond au barème des ECE mais l'application doit être testée davantage. Si vous constatez une différence avec la notation officielle, merci de nous le faire savoir par <a href="mailto:laurent@abbal.com" target="_blank">courriel</a>.</div></td>
</tr>
<tr>
<td class="col_coef"><img src='img/logo_note_ece.png' width="60" /></td>
<td><span id="notefinale">...</span><span class="survinght"> /20</span></td>
</tr>
<tr>
<td class="col_coef">APP<br /><button type="button" onclick="appCoef = change_coef('app_coef',appCoef);notefinale();" class="btn-small waves-effect waves-light" style="background-color:#cfd8dc" id="app_coef">0</button></td>
<td class="col_abcd"><button type="button" onclick="appNote = change_note('app_note',appNote);notefinale();" class="bouton_lettre btn-large waves-effect waves-light disabled" id="app_note">A</button></td>
</tr>
<tr>
<td class="col_coef">ANA<br /><button type="button" onclick="anaCoef = change_coef('ana_coef',anaCoef);notefinale();" class="btn-small waves-effect waves-light" style="background-color:#cfd8dc" id="ana_coef">0</button></td>
<td class="col_abcd"><button type="button" onclick="anaNote = change_note('ana_note',anaNote);notefinale();" class="bouton_lettre btn-large waves-effect waves-light disabled" id="ana_note">A</button></td>
</tr>
<tr>
<td class="col_coef">REA<br /><button type="button" onclick="reaCoef = change_coef('rea_coef',reaCoef);notefinale();" class="btn-small waves-effect waves-light" style="background-color:#cfd8dc" id="rea_coef">0</button></td>
<td class="col_abcd"><button type="button" onclick="reaNote = change_note('rea_note',reaNote);notefinale();" class="bouton_lettre btn-large waves-effect waves-light disabled" id="rea_note">A</button></td>
</tr>
<tr>
<td class="col_coef">VAL<br /><button type="button" onclick="valCoef = change_coef('val_coef',valCoef);notefinale();" class="btn-small waves-effect waves-light" style="background-color:#cfd8dc" id="val_coef">0</button></td>
<td class="col_abcd"><button type="button" onclick="valNote = change_note('val_note',valNote);notefinale();" class="bouton_lettre btn-large waves-effect waves-light disabled" id="val_note">A</button></td>
</tr>
<tr>
<td class="col_coef">COM<br /><button type="button" onclick="comCoef = change_coef('com_coef',comCoef);notefinale();" class="btn-small waves-effect waves-light" style="background-color:#cfd8dc" id="com_coef">0</button></td>
<td class="col_abcd"><button type="button" onclick="comNote = change_note('com_note',comNote);notefinale();" class="bouton_lettre btn-large waves-effect waves-light blue darken-3 disabled" id="com_note">A</button></td>
</tr>
<tr>
<td colspan="2" style="text-align:right;">
<!-- MENU -->
<div class="fixed-action-btn">
<a class="btn-floating" style="background-color:#F44336;"><i class="large material-icons">layers</i></a>
<ul>
<li><a href="index.html" class="btn-floating btn-small blue-grey darken-3"><i class="material-icons">home</i></a></li>
<li><a href="about.html" class="btn-floating btn-small blue-grey darken-3"><i class="material-icons">info_outline</i></a></li>
</ul>
</div>
</td>
</tr>
</table>
<script>
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.fixed-action-btn');
var instances = M.FloatingActionButton.init(elems, {
direction: 'left',
hoverEnabled: false
});
});
</script>
<script type="text/javascript" src="jquery/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="materialize/js/materialize.min.js"></script>
<script type="text/javascript" src="cordova.js"></script>
</body>
</html>