-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex3.html
90 lines (76 loc) · 3.62 KB
/
index3.html
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
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="imgs/favicon.ico" type="imgs/favicon">
<title>Color Blending</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-horizon.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="css/custom.css" rel="stylesheet">
<link href="css/visual.css" rel="stylesheet">
<script src="js/custom.js"></script>
</head>
<body>
<div>
<p class="title"><b>Phase 4 of 4 - This is it, now the fun begins!</b></p>
<div class="row probar">
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped" role="progressbar"
aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width:30%"> 30% </div>
</div>
</div>
<p class="center">Please <b>change the slider</b> to the final color that you think the two colors will mix into.</p>
<div class="row row-centered"><!--
--><div class="col-md-1 vcenter">
</div><!--
--><div class="col-md-2 col-xs-12 vcenter">
<div id="circle1" style="border:1px solid black;width:3cm;height:3cm;background:#fb0000;border-radius:50%;display:inline-block"></div><!--
--></div><!--
--><div class="col-md-2 col-xs-12 vcenter">
<img class="img-responsive vcenter" src="imgs/add.png" alt="add">
</div><!--
--><div class="col-md-2 col-xs-12 vcenter">
<div id="circle2" style="border:1px solid black;width:3cm;height:3cm;background:#000000;border-radius:50%;display:inline-block"></div><!--
--></div><!--
--><div class="col-md-2 col-xs-12 vcenter">
<img id="equal" class="img-responsive" src="imgs/equal.png" alt="equal">
</div><!--
--><div class="col-md-2 col-xs-12 vcenter">
<div id="colorcircle" style="border:1px solid black;width:3cm;height:3cm;background:#fb0000;border-radius:50%;display:inline-block"></div><!--
--><div id="hide"><div class="colorSlider"><input type="range" min="50" max="250" value="150" step="50" onInput="handleMixer(this.value, 0);" id="fader"></div></div></div><!--
--><div class="col-md-1 vcenter">
</div><!--
--></div>
<div id="hide1">
<div class="row">
<div class="continueButton">
<div id="mixDone" class="text-center">
<button id="mixdDoneButton" type="button" class="btn btn-default btn-lg" onclick="hideQuestionShowLikert()" disabled="disabled">This is the right mixed color, next!</button>
</div>
</div>
</div>
</div>
<div id="show" style="display: none;">
<div class="row text-center">
<p class="center">From <b>1 (Very Hard)</b> to <b>5 (Very Easy)</b>, how easy it was for you to answer the last question?</p>
<div class="rating">
<p class="btn btn-link" disabled>Very Hard</p>
<span>☆</span><span>☆</span><span>☆</span><span>☆</span><span>☆</span>
<p class="btn btn-link" disabled>Very Easy</p>
</div>
<div class="row">
<div class="continueButton">
<div id="mixDone" class="text-center">
<button id="mixdDoneButton" type="button" class="btn btn-default btn-lg" onClick="location.href='index4.html'">Final answer, next mix please!</button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>