diff --git a/03_dom/agenda.md b/03_dom/agenda.md index aa409dc..9195443 100644 --- a/03_dom/agenda.md +++ b/03_dom/agenda.md @@ -356,7 +356,6 @@ Projektarbeit - HTML Element Progress - IDL-Attribut vs. Content-Attribut - HTML Attribute mit boolescher Zuweisung -- getComputedStyle() und style-Attribute **Übungen:** @@ -368,14 +367,28 @@ Projektarbeit **Inhalt:** -- Repetition der Inhalte - Tooltip: HTML erweitern mit Data-Attribut -- Dataset Attribut - -- **Projektarbeit / Content Factory** +- Dataset Attribut, DOMStringMap Objekt +- getComputedStyle, Attribute mit boolscher Zuweisung **Übungen:** Übung 11 - 14 --- + +#### Tag 25 + +**Inhalt:** + +- Import von Modulen in JS (Browserseitig) +- DOM Creation - Elemente erstellen +- createElement() & appendChild() +- Projekt: Produktmanager Part I +- DOM Creation Befehle +- Entfernen von Elementen + +**Übungen:** + +Übung 15 - 16 + optionale Übungen +**Projektarbeit / Content Factory** diff --git a/03_dom/linksammlung.md b/03_dom/linksammlung.md index 2ba04e1..283dca0 100644 --- a/03_dom/linksammlung.md +++ b/03_dom/linksammlung.md @@ -74,6 +74,8 @@ - [Flaticon](https://www.flaticon.com/) - [Pexels](https://www.pexels.com/de-de/) - [FavIcon Generator](https://realfavicongenerator.net/) +- [SVG Flaggen](https://hampusborgos.github.io/country-flags/) +- [Flagicons](https://flagicons.lipis.dev/) ## Farben @@ -100,3 +102,7 @@ - [Windows Terminal](https://apps.microsoft.com/detail/9n0dx20hk701?icid=CNavAppsWindowsApps&hl=de-DE&gl=DE) - RECOMMENDED (WIN) - [Git Bash](https://git-scm.com/) - [Cmdr Terminal mit Bash](https://cmder.app/) + +## JS Plugins + +- [Floating UI](https://floating-ui.com/) diff --git a/03_dom/uebungen/u11_tasse-01001/index.html b/03_dom/uebungen/u11_tasse-01001/index.html index 868d5c8..d89702f 100644 --- a/03_dom/uebungen/u11_tasse-01001/index.html +++ b/03_dom/uebungen/u11_tasse-01001/index.html @@ -93,15 +93,35 @@ diff --git a/03_dom/uebungen/u12_button-bg-color/index.html b/03_dom/uebungen/u12_button-bg-color/index.html index 616d559..6c1f157 100644 --- a/03_dom/uebungen/u12_button-bg-color/index.html +++ b/03_dom/uebungen/u12_button-bg-color/index.html @@ -27,18 +27,34 @@ + + +
+
+

Product Manager

+
+
+ + diff --git a/03_dom/unterricht/tag25/01_product-manager/package.json b/03_dom/unterricht/tag25/01_product-manager/package.json new file mode 100644 index 0000000..26b0799 --- /dev/null +++ b/03_dom/unterricht/tag25/01_product-manager/package.json @@ -0,0 +1,11 @@ +{ + "name": "01_product-manager", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "type": "module" +}