2023-01-26 13:48:41 +00:00
|
|
|
|
|
|
|
<!DOCTYPE>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset- "UTF-8" />
|
2023-02-02 06:10:28 +00:00
|
|
|
<meta name="description" content="Visualization of video lecture taxonomy">
|
|
|
|
<meta name="keywords" content="video, taxonomy, quality, properties, instruction, visualization">
|
|
|
|
<meta name="author" content="Martin Putzlocher">
|
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
|
|
<link rel='stylesheet' href='./css/w3.css'>
|
|
|
|
<link rel='stylesheet' href='./css/w3-colors-signal.css'>
|
|
|
|
|
2023-01-31 11:31:50 +00:00
|
|
|
<title>Video Taxonomy Visualization</title>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.1.1/chart.min.js"></script>
|
|
|
|
|
|
|
|
<script>
|
2023-02-02 07:41:10 +00:00
|
|
|
/*
|
|
|
|
function processForm(e) {
|
|
|
|
if (e.preventDefault) e.preventDefault();
|
|
|
|
|
|
|
|
// do what you want with the form
|
|
|
|
|
|
|
|
// You must return false to prevent the default form behavior
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var form = document.getElementById('newEntryForm');
|
|
|
|
if (form.attachEvent) {
|
|
|
|
form.attachEvent("submit", processForm);
|
|
|
|
} else {
|
|
|
|
form.addEventListener("submit", processForm);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-02-02 06:10:28 +00:00
|
|
|
let data = new Map();
|
|
|
|
data.set("INS", 0); // instructional principle
|
|
|
|
data.set("VIS", 2); // visibility / audio
|
|
|
|
data.set("SEG", 3); // segmentation
|
|
|
|
data.set("ACT", 4); // activity
|
|
|
|
data.set("INT", 5); // interactivity
|
|
|
|
data.set("DYN", 1); // dynamic drawing
|
|
|
|
data.set("TRA", 2); // translatability
|
|
|
|
|
|
|
|
function loadNewRadarChar(chrtelement, data) {
|
2023-01-31 11:31:50 +00:00
|
|
|
|
2023-02-02 06:10:28 +00:00
|
|
|
|
2023-02-02 06:43:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function setNewValues() {
|
|
|
|
console.log("Hi!");
|
2023-02-02 06:10:28 +00:00
|
|
|
}
|
2023-01-31 11:31:50 +00:00
|
|
|
</script>
|
2023-01-26 13:48:41 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-02-02 06:10:28 +00:00
|
|
|
<h1 class="w3-container w3-green">Video lectures taxonomy</h1>
|
2023-02-02 06:43:15 +00:00
|
|
|
<h2 class="w3-container w3-gray">Video information</h2>
|
2023-02-02 06:10:28 +00:00
|
|
|
|
2023-02-02 06:43:15 +00:00
|
|
|
<div class="w3-light-gray">
|
|
|
|
<p>Please fill in information on your video</p>
|
|
|
|
<form name="newEntryForm" class="w3-container w3-white w3-border w3-border-green" method="POST" action="" onsubmit="setNewValues()">
|
|
|
|
<label class="w3-text-green" for="videoname"><b>Name of Video</b></label>
|
|
|
|
<input class="w3-input w3-border w3-light-grey" type="text" id="videoname" name="videoname" value="name of video">
|
2023-02-02 06:10:28 +00:00
|
|
|
|
2023-02-02 07:41:10 +00:00
|
|
|
<div class="w3-row-padding">
|
2023-02-02 07:04:11 +00:00
|
|
|
<div class="w3-half">
|
|
|
|
<label class="w3-text-green" for="ins_sel"><b>Instructional principle</b></label>
|
|
|
|
<select class="w3-select w3-border w3-white" name="ins_sel" id="ins_sel">
|
|
|
|
<option value="0" selected>not acceptable</option>
|
|
|
|
<option value="1">minimal requirements</option>
|
|
|
|
<option value="2">medium quality</option>
|
|
|
|
<option value="3">high quality</option>
|
|
|
|
<option value="4">excellent quality</option>
|
|
|
|
<!-- further options -->
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="w3-half">
|
|
|
|
<label class="w3-text-green" for="vis_sel"><b>Visibility / Audio</b></label>
|
|
|
|
<select class="w3-select w3-border w3-white" name="vis_sel" id="vis_sel">
|
|
|
|
<option value="0" selected>not acceptable</option>
|
|
|
|
<option value="1">minimal requirements</option>
|
|
|
|
<option value="2">medium quality</option>
|
|
|
|
<option value="3">high quality</option>
|
|
|
|
<option value="4">excellent quality</option>
|
|
|
|
<!-- further options -->
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-02-02 07:41:10 +00:00
|
|
|
<div class="w3-row-padding">
|
|
|
|
<div class="w3-half">
|
|
|
|
<label class="w3-text-green" for="seg_sel"><b>Segmentation</b></label>
|
|
|
|
<select class="w3-select w3-border w3-white" name="seg_sel" id="seg_sel">
|
|
|
|
<option value="0" selected>not acceptable</option>
|
|
|
|
<option value="1">minimal requirements</option>
|
|
|
|
<option value="2">medium quality</option>
|
|
|
|
<option value="3">high quality</option>
|
|
|
|
<option value="4">excellent quality</option>
|
|
|
|
<!-- further options -->
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="w3-half">
|
|
|
|
<label class="w3-text-green" for="act_sel"><b>Activity</b></label>
|
|
|
|
<select class="w3-select w3-border w3-white" name="act_sel" id="act_sel">
|
|
|
|
<option value="0" selected>not acceptable</option>
|
|
|
|
<option value="1">minimal requirements</option>
|
|
|
|
<option value="2">medium quality</option>
|
|
|
|
<option value="3">high quality</option>
|
|
|
|
<option value="4">excellent quality</option>
|
|
|
|
<!-- further options -->
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="w3-row-padding">
|
|
|
|
<div class="w3-half">
|
|
|
|
<label class="w3-text-green" for="int_sel"><b>interactivity</b></label>
|
|
|
|
<select class="w3-select w3-border w3-white" name="int_sel" id="int_sel">
|
|
|
|
<option value="0" selected>not acceptable</option>
|
|
|
|
<option value="1">minimal requirements</option>
|
|
|
|
<option value="2">medium quality</option>
|
|
|
|
<option value="3">high quality</option>
|
|
|
|
<option value="4">excellent quality</option>
|
|
|
|
<!-- further options -->
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="w3-half">
|
|
|
|
<label class="w3-text-green" for="dyn_sel"><b>Principle of Dynamic Drawing</b></label>
|
|
|
|
<select class="w3-select w3-border w3-white" name="dyn_sel" id="dyn_sel">
|
|
|
|
<option value="0" selected>not acceptable</option>
|
|
|
|
<option value="1">minimal requirements</option>
|
|
|
|
<option value="2">medium quality</option>
|
|
|
|
<option value="3">high quality</option>
|
|
|
|
<option value="4">excellent quality</option>
|
|
|
|
<!-- further options -->
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="w3-row-padding">
|
|
|
|
<div class="w3-half">
|
|
|
|
<label class="w3-text-green" for="tra_sel"><b>Translatability</b></label>
|
|
|
|
<select class="w3-select w3-border w3-white" name="tra_sel" id="tra_sel">
|
|
|
|
<option value="0" selected>not acceptable</option>
|
|
|
|
<option value="1">minimal requirements</option>
|
|
|
|
<option value="2">medium quality</option>
|
|
|
|
<option value="3">high quality</option>
|
|
|
|
<option value="4">excellent quality</option>
|
|
|
|
<!-- further options -->
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="w3-half">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-02-02 06:10:28 +00:00
|
|
|
|
2023-02-02 06:43:15 +00:00
|
|
|
<div class="w3-container w3-margin">
|
|
|
|
<input class="w3-btn w3-green" type="submit" name="do_entry" value="OK">
|
|
|
|
<input class="w3-btn w3-grey" type="reset" name="reset" value="Reset">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<hr/>
|
2023-01-26 13:48:41 +00:00
|
|
|
<canvas id="chartId" aria-label="chart" height="350" width="580"></canvas>
|
2023-01-31 11:31:50 +00:00
|
|
|
|
2023-01-26 13:48:41 +00:00
|
|
|
<script>
|
|
|
|
var chrt = document.getElementById("chartId").getContext("2d");
|
|
|
|
var chartId = new Chart(chrt, {
|
|
|
|
type: 'radar',
|
|
|
|
data: {
|
2023-02-02 06:10:28 +00:00
|
|
|
labels: Array.from(data.keys()),
|
2023-01-26 13:48:41 +00:00
|
|
|
datasets: [{
|
2023-01-31 11:31:50 +00:00
|
|
|
label: "Title of video",
|
2023-02-02 06:10:28 +00:00
|
|
|
data: Array.from(data.values()),
|
2023-01-31 11:31:50 +00:00
|
|
|
backgroundColor: "rgba(128,128,128,0.5)",
|
|
|
|
pointBackgroundColor: ['yellow', 'aqua', 'pink', 'lightgreen', 'lightblue', 'gold', 'maroon'],
|
2023-01-26 13:48:41 +00:00
|
|
|
borderColor: ['black'],
|
|
|
|
borderWidth: 1,
|
|
|
|
pointRadius: 6,
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
options: {
|
|
|
|
responsive: false,
|
|
|
|
elements: {
|
|
|
|
line: {
|
|
|
|
borderWidth: 3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
2023-02-02 06:10:28 +00:00
|
|
|
|
2023-01-26 13:48:41 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|