diff options
author | Roy Seitz <roy.seitz@ost.ch> | 2021-02-22 08:48:36 +0100 |
---|---|---|
committer | Roy Seitz <roy.seitz@ost.ch> | 2021-02-22 08:48:36 +0100 |
commit | a82da67587b049e54dcd53e76b4220d22a60d842 (patch) | |
tree | 8b0717987839cf0e6cac6c4297f95f94f695f247 /vorlesungen/stream | |
parent | Typos. (diff) | |
parent | add ende (diff) | |
download | SeminarMatrizen-a82da67587b049e54dcd53e76b4220d22a60d842.tar.gz SeminarMatrizen-a82da67587b049e54dcd53e76b4220d22a60d842.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to '')
-rw-r--r-- | vorlesungen/stream/countdown.html | 40 | ||||
-rw-r--r-- | vorlesungen/stream/ende.html | 29 | ||||
-rw-r--r-- | vorlesungen/stream/thumbnail.jpg | bin | 0 -> 309067 bytes |
3 files changed, 69 insertions, 0 deletions
diff --git a/vorlesungen/stream/countdown.html b/vorlesungen/stream/countdown.html new file mode 100644 index 0000000..77f9ca9 --- /dev/null +++ b/vorlesungen/stream/countdown.html @@ -0,0 +1,40 @@ +<!DOCTYPE HTML> +<html> +<head> +<style> +p { +text-align: center; +font-size: 60px; +} +div { +font-family: "Courier"; +text-align: center; +font-size: 60px; +color: #990000; +} +</style> +</head> +<body> +<div id="demo"></div> +<script> +var deadline = new Date("Feb 22, 2021 17:00:00").getTime(); +var x = setInterval(function() { +var now = new Date().getTime(); +var t = deadline - now; +if (t > 0) { + var days = Math.floor(t / (1000 * 60 * 60 * 24)); + var hours = Math.floor((t%(1000 * 60 * 60 * 24))/(1000 * 60 * 60)); + var minutes = Math.floor((t % (1000 * 60 * 60)) / (1000 * 60)); + var seconds = Math.floor((t % (1000 * 60)) / 1000); + document.getElementById("demo").innerHTML + = ("00" + minutes).slice(-2) + ":" + ("00" + seconds).slice(-2); +} else { + document.getElementById("demo").innerHTML = "00:00"; +} +}, 1000); + +</script> + +</body> +</html> + diff --git a/vorlesungen/stream/ende.html b/vorlesungen/stream/ende.html new file mode 100644 index 0000000..9dd27e1 --- /dev/null +++ b/vorlesungen/stream/ende.html @@ -0,0 +1,29 @@ +<!DOCTYPE HTML> +<html> +<head> +<style> +p { +text-align: center; +font-size: 60px; +} +div { +font-family: "Courier"; +text-align: center; +font-size: 60px; +color: #990000; +} +</style> +</head> +<body> +<div id="demo"> +<p> +Vielen Dank für Ihren Besuch. +</p> +<p> +Fortsetzung der Seminar-Sitzung in +der BBB-Konferenz in Moodle. +</p> +</div> +</body> +</html> + diff --git a/vorlesungen/stream/thumbnail.jpg b/vorlesungen/stream/thumbnail.jpg Binary files differnew file mode 100644 index 0000000..e9a5064 --- /dev/null +++ b/vorlesungen/stream/thumbnail.jpg |