-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·119 lines (103 loc) · 4.73 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!-- Adapted from https://www.evl.uic.edu/aej/424/ -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Human Computer Interaction </title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="shortcut icon" href="figures/HCI_original.png">
<script type="text/javascript">
function UpdatePageSize () {
var container = document.getElementById ("all");
var container2 = document.getElementById ("menu");
var newHeight = container.offsetHeight - container2.offsetHeight ;
var newHeightString = newHeight.toString();
var newWidth = container.offsetWidth;
var newWidthString = newWidth.toString();
document.getElementById('insideID').setAttribute("height", newHeightString+"px;");
document.getElementById('insideID').setAttribute("width", newWidthString+"px;");
document.getElementById('innerID').setAttribute("height", newHeightString+"px;");
document.getElementById('innerID').setAttribute("width", newWidthString+"px;");
}
function ChangeifiOS () {
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false );
if (iOS == true)
{
var anchors = document.getElementsByTagName('a');
for (var i = 0; i < anchors.length; i++) {
anchors[i].target = '_top';
}
}
}
window.onresize = function()
{
UpdatePageSize();
}
</script>
</head>
<body id="all" onload="ChangeifiOS(); UpdatePageSize()" ontouchstart="" onmouseover="">
<div align="center"><font style="font-family:
Helvetica,Arial,sans-serif;" color="#555" size="5">Special Problems in Computer Science: Human Computer Interaction - Spring 2021</font></div>
<div id="menu">
<nav>
<ul>
<li><a href="main.html" target="InsideFrame">Main</a></li>
<li><a href="syllabus.html" target="InsideFrame">Syllabus</a></li>
<li><a href="#">Lectures</a>
<ul>
<li><a href="l1.html" target="InsideFrame"><font color="#000">Lecture 1: Elevator vs. Microwaves control panels</font></a></li>
<li><a href="l2.html" target="InsideFrame"><font color="#000">Lecture 2: Design of Everyday Things</font></a></li>
<li><a href="l3.html"
target="InsideFrame"><font color="#000">Lecture 3: Principles & Golden Rules</font></a></li>
<li><a href="l4.html"
target="InsideFrame"><font color="#000">Lecture 4: Human Factors & Direct Manipulation
</font></a></li>
<li><a href="l5.html"
target="InsideFrame"><font color="#800">Lecture 5: Project tutorials
</font></a></li>
<li><a href="l6.html"
target="InsideFrame"><font color="#000">Lecture 6: Elegance & Simplicity
</font></a></li>
<li><a href="l7.html"
target="InsideFrame"><font color="#000">Lecture 7: Scale, Contrast & Proportion</font></a></li>
<li><a href="l8.html"
target="InsideFrame"><font color="#000">Lecture 8: Organization & Visual Structure
</font></a></li>
<li><a href="l9.html"
target="InsideFrame"><font color="#000">Lecture 9: Module & Program</font></a></li>
<li><a href="l10.html"
target="InsideFrame"><font color="#000">Lecture 10: Image & Representation
</font></a></li>
<li><a href="l11.html"
target="InsideFrame"><font color="#000">Lecture 11: Evaluation Techniques
</font></a></li>
<li><a href="l12.html"
target="InsideFrame"><font color="#000">Lecture 12: Re/Inducing Sickness
</font></a></li>
</ul>
</li>
<li><a href="covid.html" target="InsideFrame">Covid-19</a></li>
<li><a href="#">Projects</a>
<ul>
<li><a href="Project1/index.html" target="InsideFrame">Project 1</a></li>
<li><a href="Project2/index.html" target="InsideFrame">Project 2</a></li>
<li><a href="Final/index.html" target="InsideFrame">Final exam</a></li>
</ul>
<!-- <li><a href="grade/" target="InsideFrame">Grades</a></li>-->
<!-- <li><a href="P1/index.html" target="InsideFrame">Project 1</a></li>
<li><a href="P2/index.html" target="InsideFrame">Project 2</a></li>
</ul>
</li>
<li><a href="student.html" target="InsideFrame">Students</a></li>
<li><a href="testJS/grades.html" target="InsideFrame">Grades</a></li>
<li><a href="table.html"-->
<!--target="InsideFrame">Students</a></li>-->
<li><a href="http://www.myweb.ttu.edu/tnhondan" target="_blank">Instructor</a></li>
</ul>
</nav>
</div>
<div class="innerpage" id="innerID">
<iframe name="InsideFrame" id="insideID" src="main.html" type="text/html" width="0" height="0" frameBorder="0"></iframe>
</div>
</body>
</html>