Hades Griekse God van de Onderwereld | Hades Griekse Mythologie (2024)

`; this._targetInput.insertAdjacentHTML('afterend', dHtm); this._targetInput.nextElementSibling.insertAdjacentElement('beforeend', this._targetInput); } this._newVoiceId = `v_searchByVoice_${this._instanceIndex}`; this._voiceTextElmId = `v_voiceTxtEl_${this._instanceIndex}`; var newVoice = document.getElementById(this._newVoiceId); if ((this._targetInput || this._targetInputList) && !newVoice) { let sHtm = ` `; if (!this._textableInstance) { this._targetInput.insertAdjacentHTML('afterend', sHtm); this._targetInput.parentElement.classList.add('v_hasVoiceSearch'); } else { if (this._targetSelectionElm.parentElement === null) { var summernoteToolBar = document.getElementById('summernote-disconnected-toolbar'); if (summernoteToolBar) { var rowTwo = summernoteToolBar.getElementsByClassName('note-row2')[0]; this._targetSelectionElm = rowTwo; } } if (this._targetSelectionElm) { this._targetSelectionElm.insertAdjacentHTML('beforeend', sHtm); this._targetSelectionElm.classList.add('v_hasVoiceSearch'); } else { return true; } } } return false; }; SpeechToTextHelper.prototype.SetupRecognition = function () { let finalTranscript = ''; let voiceTutElm = document.getElementById(this._voiceTextElmId); let selectedInstanceIndex = this._instanceIndex; this._recState.recognition = new this._speechRecognition(); this._recState.recognition.continuous = false; //this._recState.recognition.lang = 'en-US'; this._recState.recognition.interimResults = true; if ((this._targetInput || this._targetInputList) && voiceTutElm) { this._recState.recognition.onresult = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; let interimTranscript = ""; for (let i = e.resultIndex; i < e.results.length; i += 1) { const { transcript } = e.results[i][0]; if (e.results[i].isFinal) { finalTranscript += transcript; } else { interimTranscript += transcript; } } thisPointer._recState.finalSpeechVal = `${finalTranscript} ${interimTranscript}`.trim(); if (!thisPointer._textableInstance) { thisPointer._targetInput.value = thisPointer._recState.finalSpeechVal; } else { for (var i = 0; i < thisPointer._targetInputList.length; i++) { thisPointer._targetInputList[i].innerText = thisPointer._recState.finalSpeechVal; } } voiceTutElm.innerText = thisPointer._recState.finalSpeechVal; }; this._recState.recognition.onspeechstart = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer._recState.finalSpeechVal = ''; finalTranscript = ''; }; this._recState.recognition.onspeechend = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer._recState.recognition.stop(); }; this._recState.recognition.onend = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; var voiceTutElm = document.getElementById(thisPointer._voiceTextElmId); if (thisPointer._recState.finalSpeechVal.length >= 2) { if (!thisPointer._textableInstance) { if (thisPointer._targetInput.nodeName.toLowerCase() !== 'input') { thisPointer._targetInput.innerText = thisPointer._recState.finalSpeechVal; } else { thisPointer._targetInput.value = thisPointer._recState.finalSpeechVal; } thisPointer._targetInput.dispatchEvent(new Event('change')); } else { for (var i = 0; i < thisPointer._targetInputList.length; i++) { var inputElm = thisPointer._targetInputList[i]; if (inputElm.nodeName.toLowerCase() !== 'input') { var selectedFontElm = document.getElementsByClassName('note-current-fontname')[0]; var selectedFontSize = document.getElementsByClassName('note-current-fontsize')[0]; inputElm.innerText = thisPointer._recState.finalSpeechVal; if (selectedFontElm) { inputElm.style.fontFamily = selectedFontElm.style.fontFamily; } if (selectedFontSize) { inputElm.style.fontSize = `${selectedFontSize.innerText}px`; } } else { inputElm.value = thisPointer._recState.finalSpeechVal; } inputElm.dispatchEvent(new Event('change')); } } if (thisPointer._targetActionElm) { thisPointer._targetActionElm.click(); } document.body.classList.remove('v_listening'); } if (!thisPointer._recState.finalSpeechVal.length) { voiceTutElm.innerText = thisPointer._recState.noSpeech; thisPointer._listeningTimeout = setTimeout(function () { document.body.classList.remove('v_listening'); }, 1500); } }; this._recState.recognition.onerror = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer._recState.recognition.stop(); console.error('Speech recognition error:', e.error); if (e.error.includes('not-allowed')) { document.body.classList.add('v_speechNotAllowed'); } throw e.error; }; } }; SpeechToTextHelper.prototype.ShowTutorialToolTip = function () { var elm = document.getElementById(`v_voiceInstructionsTip_${this._instanceIndex}`); elm.style.display = 'flex'; }; SpeechToTextHelper.prototype.HideTutorialToolTip = function () { var elm = document.getElementById(`v_voiceInstructionsTip_${this._instanceIndex}`); if (elm) { elm.style.display = 'none'; sessionStorage.setItem(`v_isVoiceTutorialViewed_${this._instanceIndex}`, 'true'); } } SpeechToTextHelper.prototype.AddEventListeners = function () { let selectedInstanceIndex = this._instanceIndex; var speechButton = document.getElementById(this._newVoiceId); this._targetSelectionElm.addEventListener('mouseover', function () { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer.CheckForTutorial(); }); speechButton.addEventListener('click', function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; if (thisPointer._listeningTimeout) { clearTimeout(thisPointer._listeningTimeout); } thisPointer._recState.finalSpeechVal = ''; let tutorialTxt = document.getElementById(thisPointer._voiceTextElmId); let tutorialInput = thisPointer._targetInput; thisPointer.HideTutorialToolTip(); if (thisPointer._recState.recognition != null && !document.body.classList.contains('v_listening')) { document.body.classList.add('v_listening'); if (tutorialTxt) { tutorialTxt.innerText = thisPointer._recState.listening; } if (tutorialInput) { if (tutorialInput.nodeName.toLowerCase() === 'input') { tutorialInput.setAttribute('placeholder', thisPointer._recState.listening); } else { tutorialInput.innerText = thisPointer._recState.listening; } } thisPointer._recState.recognition.start(); } else { document.body.classList.remove('v_listening'); thisPointer._recState.recognition.stop(); } }); var toolTipCloser = document.getElementById(`v_toolTipCloser_${selectedInstanceIndex}`); toolTipCloser.addEventListener('click', function () { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer.HideTutorialToolTip(); }); }; SpeechToTextHelper.prototype.CheckForTutorial = function () { let selectedInstanceIndex = this._instanceIndex; let isTutorialViewed = sessionStorage.getItem(`v_isVoiceTutorialViewed_${this._instanceIndex}`); if (isTutorialViewed == null || isTutorialViewed === 'false') { this.ShowTutorialToolTip(); setTimeout(function () { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer.HideTutorialToolTip(); }, 5000); } };
`; this._targetInput.insertAdjacentHTML('afterend', dHtm); this._targetInput.nextElementSibling.insertAdjacentElement('beforeend', this._targetInput); } this._newVoiceId = `v_searchByVoice_${this._instanceIndex}`; this._voiceTextElmId = `v_voiceTxtEl_${this._instanceIndex}`; var newVoice = document.getElementById(this._newVoiceId); if ((this._targetInput || this._targetInputList) && !newVoice) { let sHtm = ` `; if (!this._textableInstance) { this._targetInput.insertAdjacentHTML('afterend', sHtm); this._targetInput.parentElement.classList.add('v_hasVoiceSearch'); } else { if (this._targetSelectionElm.parentElement === null) { var summernoteToolBar = document.getElementById('summernote-disconnected-toolbar'); if (summernoteToolBar) { var rowTwo = summernoteToolBar.getElementsByClassName('note-row2')[0]; this._targetSelectionElm = rowTwo; } } if (this._targetSelectionElm) { this._targetSelectionElm.insertAdjacentHTML('beforeend', sHtm); this._targetSelectionElm.classList.add('v_hasVoiceSearch'); } else { return true; } } } return false; }; SpeechToTextHelper.prototype.SetupRecognition = function () { let finalTranscript = ''; let voiceTutElm = document.getElementById(this._voiceTextElmId); let selectedInstanceIndex = this._instanceIndex; this._recState.recognition = new this._speechRecognition(); this._recState.recognition.continuous = false; //this._recState.recognition.lang = 'en-US'; this._recState.recognition.interimResults = true; if ((this._targetInput || this._targetInputList) && voiceTutElm) { this._recState.recognition.onresult = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; let interimTranscript = ""; for (let i = e.resultIndex; i < e.results.length; i += 1) { const { transcript } = e.results[i][0]; if (e.results[i].isFinal) { finalTranscript += transcript; } else { interimTranscript += transcript; } } thisPointer._recState.finalSpeechVal = `${finalTranscript} ${interimTranscript}`.trim(); if (!thisPointer._textableInstance) { thisPointer._targetInput.value = thisPointer._recState.finalSpeechVal; } else { for (var i = 0; i < thisPointer._targetInputList.length; i++) { thisPointer._targetInputList[i].innerText = thisPointer._recState.finalSpeechVal; } } voiceTutElm.innerText = thisPointer._recState.finalSpeechVal; }; this._recState.recognition.onspeechstart = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer._recState.finalSpeechVal = ''; finalTranscript = ''; }; this._recState.recognition.onspeechend = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer._recState.recognition.stop(); }; this._recState.recognition.onend = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; var voiceTutElm = document.getElementById(thisPointer._voiceTextElmId); if (thisPointer._recState.finalSpeechVal.length >= 2) { if (!thisPointer._textableInstance) { if (thisPointer._targetInput.nodeName.toLowerCase() !== 'input') { thisPointer._targetInput.innerText = thisPointer._recState.finalSpeechVal; } else { thisPointer._targetInput.value = thisPointer._recState.finalSpeechVal; } thisPointer._targetInput.dispatchEvent(new Event('change')); } else { for (var i = 0; i < thisPointer._targetInputList.length; i++) { var inputElm = thisPointer._targetInputList[i]; if (inputElm.nodeName.toLowerCase() !== 'input') { var selectedFontElm = document.getElementsByClassName('note-current-fontname')[0]; var selectedFontSize = document.getElementsByClassName('note-current-fontsize')[0]; inputElm.innerText = thisPointer._recState.finalSpeechVal; if (selectedFontElm) { inputElm.style.fontFamily = selectedFontElm.style.fontFamily; } if (selectedFontSize) { inputElm.style.fontSize = `${selectedFontSize.innerText}px`; } } else { inputElm.value = thisPointer._recState.finalSpeechVal; } inputElm.dispatchEvent(new Event('change')); } } if (thisPointer._targetActionElm) { thisPointer._targetActionElm.click(); } document.body.classList.remove('v_listening'); } if (!thisPointer._recState.finalSpeechVal.length) { voiceTutElm.innerText = thisPointer._recState.noSpeech; thisPointer._listeningTimeout = setTimeout(function () { document.body.classList.remove('v_listening'); }, 1500); } }; this._recState.recognition.onerror = function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer._recState.recognition.stop(); console.error('Speech recognition error:', e.error); if (e.error.includes('not-allowed')) { document.body.classList.add('v_speechNotAllowed'); } throw e.error; }; } }; SpeechToTextHelper.prototype.ShowTutorialToolTip = function () { var elm = document.getElementById(`v_voiceInstructionsTip_${this._instanceIndex}`); elm.style.display = 'flex'; }; SpeechToTextHelper.prototype.HideTutorialToolTip = function () { var elm = document.getElementById(`v_voiceInstructionsTip_${this._instanceIndex}`); if (elm) { elm.style.display = 'none'; sessionStorage.setItem(`v_isVoiceTutorialViewed_${this._instanceIndex}`, 'true'); } } SpeechToTextHelper.prototype.AddEventListeners = function () { let selectedInstanceIndex = this._instanceIndex; var speechButton = document.getElementById(this._newVoiceId); this._targetSelectionElm.addEventListener('mouseover', function () { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer.CheckForTutorial(); }); speechButton.addEventListener('click', function (e) { let thisPointer = speechInstances[selectedInstanceIndex]; if (thisPointer._listeningTimeout) { clearTimeout(thisPointer._listeningTimeout); } thisPointer._recState.finalSpeechVal = ''; let tutorialTxt = document.getElementById(thisPointer._voiceTextElmId); let tutorialInput = thisPointer._targetInput; thisPointer.HideTutorialToolTip(); if (thisPointer._recState.recognition != null && !document.body.classList.contains('v_listening')) { document.body.classList.add('v_listening'); if (tutorialTxt) { tutorialTxt.innerText = thisPointer._recState.listening; } if (tutorialInput) { if (tutorialInput.nodeName.toLowerCase() === 'input') { tutorialInput.setAttribute('placeholder', thisPointer._recState.listening); } else { tutorialInput.innerText = thisPointer._recState.listening; } } thisPointer._recState.recognition.start(); } else { document.body.classList.remove('v_listening'); thisPointer._recState.recognition.stop(); } }); var toolTipCloser = document.getElementById(`v_toolTipCloser_${selectedInstanceIndex}`); toolTipCloser.addEventListener('click', function () { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer.HideTutorialToolTip(); }); }; SpeechToTextHelper.prototype.CheckForTutorial = function () { let selectedInstanceIndex = this._instanceIndex; let isTutorialViewed = sessionStorage.getItem(`v_isVoiceTutorialViewed_${this._instanceIndex}`); if (isTutorialViewed == null || isTutorialViewed === 'false') { this.ShowTutorialToolTip(); setTimeout(function () { let thisPointer = speechInstances[selectedInstanceIndex]; thisPointer.HideTutorialToolTip(); }, 5000); } };
  • Mijn Storyboards
  • https://www.storyboardthat.com/nl/mythology/hades

    Griekse Mythologie

    Maak een Storyboard ▶

    "; trHtm += "

    "; if (vwoShowSideBar) { trHtm += "

    Zoek Artikelen

    "; } trHtm += "

    "; trHtm += '

    '; trHtm += '

    BEGIN NU UW 14 DAGEN GRATIS PROEF!

    BEGIN NU UW 14 DAGEN GRATIS PROEF!

    '; trHtm += '

    Start My Free Trial

    '; trHtm += '

    Start My Free Trial

    '; trHtm += '×'; var freeTrialBars = document.getElementsByClassName('free-trial-bar'); for (var i = 0; i < freeTrialBars.length; i++) { freeTrialBars[i].insertAdjacentHTML('afterbegin', trHtm); } }); window.addEventListener('scroll', function (e) { var TocCtl = document.getElementsByClassName('free-trial-bar'); var outSectionRect = document.getElementById('ArticleBodyElement'); var scrollVal = window.scrollY - 128; var outerSectionValue = outSectionRect ? (outSectionRect.getBoundingClientRect().height - 150) : 0; var realScrollVal = (scrollVal > outerSectionValue ? outerSectionValue : scrollVal); for (var i = 0; i < TocCtl.length; i++) { if (realScrollVal > 0) { TocCtl[i].style.marginTop = `${realScrollVal}px`; } else { TocCtl[i].style.marginTop = ``; } } });

    `; document.body.insertAdjacentHTML('beforeend', modalHtml); var content = document.getElementById('ScheduleCallModalContent'); var calendarlyDiv = document.createElement('div'); var scrTag = document.createElement('script'); var maxHeight = window.innerHeight - 100; calendarlyDiv.setAttribute('data-url', calendarlyDataUrl); calendarlyDiv.classList.add('calendly-inline-widget'); calendarlyDiv.style.width = '100%'; calendarlyDiv.style.height = `${(maxHeight < 1175 ? maxHeight : 1175)}px`; calendarlyDiv.id = 'calendarContent'; content.appendChild(calendarlyDiv); scrTag.type = 'text/javascript'; scrTag.src = 'https://assets.calendly.com/assets/external/widget.js'; scrTag.addEventListener('load', function () { ShowModal('ScheduleCallModal'); }); content.appendChild(scrTag); window.addEventListener('resize', HandleWindowResizeForCalandar); calendarCreated = true; } else { ShowModal('ScheduleCallModal'); } }); } }); function HandleWindowResizeForCalandar() { var calendarlyDiv = document.getElementById('calendarContent'); var contentElm = document.getElementById('ScheduleCallModal'); if (calendarlyDiv) { var maxHeight = window.innerHeight - 100; calendarlyDiv.style.height = `${(maxHeight < 1175 ? maxHeight : 1175)}px`; if (window.innerWidth >= 1000) { contentElm.firstChild.style.marginRight = '25%'; contentElm.firstChild.style.marginLeft = '25%'; } else { contentElm.firstChild.style.marginRight = ''; contentElm.firstChild.style.marginLeft = ''; } } else { RemoveResizeEventFromCalandarModal(); } } function RemoveResizeEventFromCalandarModal() { window.removeEventListener('resize', HandleWindowResizeForCalandar); };

    Hades is de god van de onderwereld en de doden, en hij wordt vaak voorgesteld door zijn tweepuntige septer en de driehoofdhond, Cerberus.

    Hades: Griekse God van de Onderwereld

    Kopieer dit Voorbeeld — Of — Maak je Eigen Storyboard

    Hades Griekse God van de Onderwereld | Hades Griekse Mythologie (6)

    Meer opties

    Hades was een van de kinderen van Cronos en Rhea, en hielp zijn broers en zussen om Cronos omver te werpen. Na zijn nederlaag gooien Zeus, Poseidon en Hades dobbelstenen om te zien wie de verschillende rijken van de wereld zal controleren. Hades eindigt als de koning van de onderwereld en de god van de doden. Hades is nu synoniem als een naam voor de onderwereld, niet alleen voor de god. De Grieken hielden het nageleven in hoge mate. Zij geloofden dat een ziel niet kon rusten, tenzij het lichaam goed begraven of ontslagen was. Zij zouden hun doden begraven met twee munten die de ogen van het lijk bedekken om Charon, de veerman, te betalen om hun zielen over de rivier Styx en in het land van de doden te brengen. De onderwereld werd bewaakt door een drie-koppige hond genaamd Cerberus, en zielen wachtten in Tartarus, waar Cronos en zijn bondgenoten door Zeus werden gevangen genomen.

    Hades werd verliefd op Persephone, de dochter van Zeus en Demeter. Hij trok haar een dag op zijn wagen en bracht haar terug naar de onderwereld. Demeter was zo verontrust over het verdwijnen van haar dochter dat ze de aarde moest stoppen en een grote hongersnood overwon de velden tot Zeus ingestemd was om Persephone terug te helpen. Zijn één voorwaarde was echter dat als Persephone iets in de Underworld had moeten eten, zou ze daar moeten blijven.

    Persephone kwam uiteindelijk verliefd op Hades, maar ze leek dat ze nog steeds ongelukkig was. Ze aten zes granaatappelzaden toen niemand kijkt, en daardoor verklaarde Zeus dat ze zes maanden van het jaar in de Underworld met Hades zou moeten doorbrengen. Dit leidde tot de seizoenen van de herfst en de winter, omdat Demeter weigerde om iets te laten groeien tijdens die zes maanden, was haar dochter weg.

    Odysseus bezoekt het land van de doden in het epische gedicht van Homer The Odyssey , waar hij met de blinde profeet Tiresias raadpleegt, die hem waarschuwt om het vee van de zonnegod niet te eten. Hades was nooit openlijk kwaad, zoals de christelijke satan is afgebeeld; In plaats daarvan is hij streng en commanderend, maar erg moeilijk te boos.

    Hades Griekse God van de Onderwereld | Hades Griekse Mythologie (7)

    Maak je eigen Storyboard

    Probeer het gratis!

    Maak je eigen Storyboard

    Probeer het gratis!

    Hades Quick Reference

    Ouders

    Cronos en Rhea


    Symbolen

    • Tweepuntige septer
    • Cerberus
    • Onzichtbaarheidsorgaan

    Power / Domain

    • Underworld
    • God van de Doden

    Opvallende mythen

    • Omkleden van Cronos
    • Ontvoering van Persephone
    • Heracles in de onderwereld

    Zorg ervoor dat u naar onze leerkrachtgids op de 12 Olympische Goden kijkt!

    Learn more about Egyptian, Norse, and Greek mythology!

    Bekijk Alle Bronnen Voor Docenten

    Probeer 1 Maand Gratis

    Hades Griekse God van de Onderwereld | Hades Griekse Mythologie (8)

    Voor Persoonlijk Gebruik Voor Leraren Voor Teams

    30-dagen geld terug garantie Alleen nieuwe klanten Volledige prijs na introductieaanbieding

    Lees meer over onze afdelings-, school- en districtspakketten

    *(Hiermee start u een gratis proefperiode van 2 weken - geen creditcard nodig)

    https://www.storyboardthat.com/nl/mythology/hades
    © 2024 - Clever Prototypes, LLC - Alle rechten voorbehouden.
    StoryboardThat is een handelsmerk van Clever Prototypes , LLC , en geregistreerd bij het US Patent and Trademark Office

    Hades Griekse God van de Onderwereld | Hades Griekse Mythologie (2024)

    References

    Top Articles
    Latest Posts
    Article information

    Author: Otha Schamberger

    Last Updated:

    Views: 6235

    Rating: 4.4 / 5 (55 voted)

    Reviews: 86% of readers found this page helpful

    Author information

    Name: Otha Schamberger

    Birthday: 1999-08-15

    Address: Suite 490 606 Hammes Ferry, Carterhaven, IL 62290

    Phone: +8557035444877

    Job: Forward IT Agent

    Hobby: Fishing, Flying, Jewelry making, Digital arts, Sand art, Parkour, tabletop games

    Introduction: My name is Otha Schamberger, I am a vast, good, healthy, cheerful, energetic, gorgeous, magnificent person who loves writing and wants to share my knowledge and understanding with you.