Phoebe: Titanes van de Profetie | Griekse Mythen Onderzocht (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 { if (thisPointer._targetInputList.length === 0) { var shapeId = thisPointer._targetElmTracking.split('_textarea')[0]; var textArea = document.getElementById(shapeId).getElementsByClassName("note-editable")[0].firstElementChild; var shape = document.getElementById(shapeId); if (textArea) { textArea.classList.add(thisPointer._targetElmTracking); thisPointer._targetInputList = shape.getElementsByClassName(thisPointer._targetElmTracking); console.log('Speech to text self heal'); } else { Logger.logErrorMessage("SpeechToText.OnResults", new Error('No target input list')); console.log('Text to speech error'); } } 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 { if (thisPointer._targetInputList.length === 0) { var shapeId = thisPointer._targetElmTracking.split('_textarea')[0]; var textArea = document.getElementById(shapeId).getElementsByClassName("note-editable")[0].firstElementChild; var shape = document.getElementById(shapeId); if (textArea) { textArea.classList.add(thisPointer._targetElmTracking); thisPointer._targetInputList = shape.getElementsByClassName(thisPointer._targetElmTracking); console.log('Speech to text self heal'); } else { Logger.logErrorMessage("SpeechToText.OnResults", new Error('No target input list')); console.log('Text to speech error'); } } 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/phoebe

    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); };

    Phoebe is een Titan godin van verstand en profetie omdat ze de Oracle in Delphi beheert.

    Phoebe: Titan Goddess of Intellect

    Kopieer dit Voorbeeld — Of — Maak je Eigen Storyboard

    Phoebe: Titanes van de Profetie | Griekse Mythen Onderzocht (6)

    Meer opties

    Phoebe was een dochter van Uranus en Gaea, maar niet direct betrokken bij het omverwerpen van Uranus door haar broer Cronos. Ze was niet erg actief in mythologie, maar haar lijn is het meest interessante deel van haar verhaal. Zij trouwde met Coeus, de god van de hemelse as. Bij hem hadden ze Asteria en Leto. Asteria was de moeder van Hecate; Leto was de moeder van Apollo en Artemis, waardoor Phoebe hun grootmoeder was.

    Zij werd beschouwd als de godin van verstand en profetie omdat zij de controle over het Oracle in Delphi van Themis kreeg en de derde profeet werd. Ze begaf dit uiteindelijk aan haar kleinzoon Apollo. Ze wordt vaak afgebeeld met de maan als haar symbool.

    Phoebe: Titanes van de Profetie | Griekse Mythen Onderzocht (7)

    Maak je eigen Storyboard

    Probeer het gratis!

    Maak je eigen Storyboard

    Probeer het gratis!

    Phoebe Quick Reference

    Ouders

    Uranus en Gaea


    Domein / Macht

    Godin van Intellect en Profetie


    Opvallende mythen

    • Moeder van Asteria en Leto
    • Grootmoeder van Hecate, Apollo en Artemis
    • Derde Oracle of Delphi

    Symbool / kenmerken

    Maan

    Learn more about Egyptian, Norse, and Greek mythology!

    Bekijk Alle Bronnen Voor Docenten

    Probeer 1 Maand Gratis

    Phoebe: Titanes van de Profetie | Griekse Mythen Onderzocht (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/phoebe
    © 2024 - Clever Prototypes, LLC - Alle rechten voorbehouden.
    StoryboardThat is een handelsmerk van Clever Prototypes , LLC , en geregistreerd bij het US Patent and Trademark Office

    Phoebe: Titanes van de Profetie | Griekse Mythen Onderzocht (2024)

    References

    Top Articles
    Latest Posts
    Article information

    Author: Wyatt Volkman LLD

    Last Updated:

    Views: 5280

    Rating: 4.6 / 5 (66 voted)

    Reviews: 81% of readers found this page helpful

    Author information

    Name: Wyatt Volkman LLD

    Birthday: 1992-02-16

    Address: Suite 851 78549 Lubowitz Well, Wardside, TX 98080-8615

    Phone: +67618977178100

    Job: Manufacturing Director

    Hobby: Running, Mountaineering, Inline skating, Writing, Baton twirling, Computer programming, Stone skipping

    Introduction: My name is Wyatt Volkman LLD, I am a handsome, rich, comfortable, lively, zealous, graceful, gifted person who loves writing and wants to share my knowledge and understanding with you.