-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvs-intro.php
81 lines (63 loc) · 2.93 KB
/
vs-intro.php
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
<?php
session_start();
if(!isset($_SESSION["username"])){
header("location:index.php");
}
include "conn.php";
?>
<?php
include('header.php');
?>
<h3>Part 1. Comparing Video Summarizations</h3>
<p>
In this part of the study, you will use three different video summarizations in three imaginary scenarios. <br>
<br>
You will spend <b>5 minutes</b> to look at <b>10 video summaries</b> with each video summarization method.<br>
In this phase, full clips are not watchable yet.<br><br>
Please note that the videos are sorted in random order: videos at the top are not necessarily good ones.<br>
You will be rating each summary on relevance, difficulty, and novelty. Make your best judgment.<br>
Look at the following example.
<br><br>
<img src="img/vsLikert.png" class="img-polaroid img-rounded"><br><br>
Then, you will watch <b>three highest-rated tutorials</b>.<br>
After watching each tutorial, you will be rating these three videos <b>again</b> on relevance, difficulty, and novelty.
</p>
<br>
<p>If you are ready to proceed, please click NEXT.</p>
<form id="myForm" action="vs-process.php" method="POST">
<button id="nextButton" class="btn btn-large btn-primary" type="submit">
NEXT
</button>
</form>
</div><!--container-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.2.min.js"><\/script>')</script>
<script src="js/libs/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="js/libs/jquery-ui-1.8.22.custom.min.js"></script>
<script type="text/javascript" src="js/libs/jwplayer/jwplayer.js"></script>
<script type="text/javascript" src="js/libs/jcarousel/jquery.jcarousel.min.js"></script>
<script type="text/javascript" src="js/libs/imagesloaded/jquery.imagesloaded.min.js"></script>
<script src="js/script.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var input = $("<input>").attr("type", "hidden").attr("name", "part").val("<?php echo $_GET['part'];?>");
$('#myForm').append($(input));
var input = $("<input>").attr("type", "hidden").attr("name", "cond").val("<?php echo $_GET['cond'];?>");
$('#myForm').append($(input));
var input = $("<input>").attr("type", "hidden").attr("name", "step").val("<?php echo $_GET['step'];?>");
$('#myForm').append($(input));
var input = $("<input>").attr("type", "hidden").attr("name", "from").val("<?php echo $_SERVER['PHP_SELF'];?>");
$('#myForm').append($(input));
$("#task-selector li").eq(0).addClass("active");
});
</script>
<!--
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
-->
</body>
</html>