-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstructions.html
More file actions
executable file
·85 lines (70 loc) · 3.97 KB
/
instructions.html
File metadata and controls
executable file
·85 lines (70 loc) · 3.97 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>CS4249 Assignment 1</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<nav class="navbar navbar-default">
<div class="container">
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Welcome</a></li>
<li><a href="questionnaire-pre.html">Pre Questionnaire</a></li>
<li class="active"><a href="instructions.html">Instructions</a></li>
<li><a href="experiment.html">Experiment</a></li>
<li><a href="questionnaire-post.html">Post Questionnaire</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Instructions</h1>
<hr>
<p>Dear participant <span class="js-pid pid"></span>, please read the instructions before the experiment.
<p>You will be asked to copy and paste text using 2 different techniques, Traditional (Crtl + C, Crtl + V) and AutoCom Paste<p>
<p> Traditional refers to the normal copy and paste function, where you highlight a selection of text to copy, then paste it into the input field </p>
<p> Autocom Paste refers to an autocomplete function where a dropdown will appear when you start typing. If the autocompleted text is longer than the stimuli, you need to cut the text to match the stimuli. </p>
<p>There will be 3 different sizes of texts you will be asked to copy and paste:</p>
<ol>
<li>Phrases</li>
<li>Sentences</li>
<li>Paragraphs</li>
</ol>
<p>Please match the input text to the stimuli that is given. </p>
<p>There will be 21 trials for this experiment. The first 3 trials are practice trials. As this experiment is very short, there will be no break.</p>
<p>Do note that <b>we are not testing you, but testing the technique</b> (: So please relax while you are doing the experiment! Thank you again for taking part.</p>
<form class="form-inline">
<button type="submit" class="btn btn-primary btn-lg">Next</button>
</form>
</div>
</div>
</div>
<script src="js/vendor/jquery-1.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/DataStorage.js"></script>
<script src="js/ACPToolKit.js"></script>
<script src="js/main.js"></script>
<script>
$(function () {
$('form').submit(function (event) {
event.preventDefault();
window.location = 'experiment.html';
});
});
</script>
</body>
</html>