From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- .../Praktikum2/b-bestellzustand.html | 59 ++++++++++++ .../Praktikum2/ewa2.zip | Bin 0 -> 53822 bytes .../Praktikum2/f-fahrer.html | 36 ++++++++ .../Praktikum2/functions.js | 19 ++++ .../Praktikum2/index.html | 30 ++++++ .../Praktikum2/k-bestellung.html | 101 +++++++++++++++++++++ .../Praktikum2/k-lieferzustand.html | 68 ++++++++++++++ .../Praktikum2/pizza.fla | Bin 0 -> 44544 bytes .../Praktikum2/pizza.gif | Bin 0 -> 3604 bytes .../Praktikum2/pizza.swf | Bin 0 -> 20215 bytes 10 files changed, 313 insertions(+) create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/b-bestellzustand.html create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/ewa2.zip create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/f-fahrer.html create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/functions.js create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/index.html create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-lieferzustand.html create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.fla create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.gif create mode 100644 Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.swf (limited to 'Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2') diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/b-bestellzustand.html b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/b-bestellzustand.html new file mode 100644 index 0000000..5f805b9 --- /dev/null +++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/b-bestellzustand.html @@ -0,0 +1,59 @@ + + + + Pizzabäcker (bestellte Pizza) + + + + + +

Pizzabäcker (bestellte Pizza)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ im Ofen + fertig +
Margeritha + + +
Salami + + +
Hawaii + + +
Tonno + + +
+ + diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/ewa2.zip b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/ewa2.zip new file mode 100644 index 0000000..c04d218 Binary files /dev/null and b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/ewa2.zip differ diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/f-fahrer.html b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/f-fahrer.html new file mode 100644 index 0000000..7af1f9c --- /dev/null +++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/f-fahrer.html @@ -0,0 +1,36 @@ + + + + Fahrer + + + + +

Fahrer

+ + + + + + + + + + + + + + + + + +
+ unterwegs + geliefert +
Salami +
+ Adresse Kunde 1 + 1,00 €
+ + diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/functions.js b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/functions.js new file mode 100644 index 0000000..d60df00 --- /dev/null +++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/functions.js @@ -0,0 +1,19 @@ +function hello() { + alert("Hello"); +} + +function addToCart() { + var warenkorb = document.getElementsByName("warenkorb"); + var newElem = document.createElement("option"); + var newText = document.createTextNode("1 neue Pizza"); + newElem.appendChild(newText); + warenkorb.add(newElem); + +} + +function delFromCart() { +} + +function checkAddr() { + return false; +} \ No newline at end of file diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/index.html b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/index.html new file mode 100644 index 0000000..29204cd --- /dev/null +++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/index.html @@ -0,0 +1,30 @@ + + + + + Pizza-Service + + + + + + + + + + + + + + + + + + + diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html new file mode 100644 index 0000000..54657ec --- /dev/null +++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-bestellung.html @@ -0,0 +1,101 @@ + + + + + Kunde (Bestellung) + + + +

Kunde (Bestellung) + + + + +

+
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ Salami + + Salami + + 4,50 € +
+ Hawaii + Hawaii4,50 €
+ Tonno + Tonno4,50 €
+ Marghetita + Marghetita 4,50 €
+
+ + + + + + + + + + + + + + + + + + + +
Warenkorb +
+ + +
+

Gesamtpreis:

+
+ 1,00 € +
+ +
+ + +
+
+
+ + \ No newline at end of file diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-lieferzustand.html b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-lieferzustand.html new file mode 100644 index 0000000..2f02f9c --- /dev/null +++ b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/k-lieferzustand.html @@ -0,0 +1,68 @@ + + + + Kunde (Lieferzustand) + + + + +

Kunde (Lieferzustand)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ im Ofen + fertig + unterwegs +
Margeritha + + + +
Salami + + + +
Hawaii + + + +
Tonno + + + +
+ + diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.fla b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.fla new file mode 100644 index 0000000..49fd52c Binary files /dev/null and b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.fla differ diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.gif b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.gif new file mode 100644 index 0000000..3eaa227 Binary files /dev/null and b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.gif differ diff --git a/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.swf b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.swf new file mode 100644 index 0000000..5f9a31a Binary files /dev/null and b/Bachelor/Entwicklung webbasierter Anwendungen/Praktikum2/pizza.swf differ -- cgit v1.2.3