前提・実現したいこと
JavaScriptで一定時間経過するごとに文字を変更するようにしたいと思っています。
現状ではエラーが3つ出た後には問題なく文字が変わるようになっています。
最初に出てくるエラーを解決したいです。
どうぞよろしくお願い致します。
発生している問題・エラーメッセージ
Uncaught TypeError: Cannot read property 'classList' of undefined at footer.js:16
Uncaught TypeError: Cannot read property 'style' of undefined at footer.js:19
Uncaught TypeError: Cannot read property 'classList' of undefined at footer.js:24
該当のソースコード
HTML
1<div class='ad-footer-contents'> 2 <h2 class='maxim'> 3 「釣りの格言」 4 </h2> 5 <div class =text-block> 6 <ul> 7 <li class="text is-active">釣れない時は魚が考える時間を与えてくれた与えてくれたと思えばいい</li> 8 <li class="text">釣り人は、どんな冒険家よりも先回りしてそこにいる</li> 9 <li class="text">釣りは盗むもんだ、聞くもんじゃない</li> 10 <li class="text">魚釣りは数字のようなものだ。というのは、完全にマスターできないからだ</li> 11 </ul> 12 </div> 13</div>
CSS
1.ad-footer-contents { 2 width: 100vw; 3 background-image: image-url('Efishing.png'); 4 background-size: cover; 5 background-repeat: no-repeat; 6 background-position: top center; 7 display: flex; 8 flex-direction: column; 9 align-items: center; 10 justify-content: center; 11 padding: 10vh 15vh; 12 text-shadow: 0 0 5px rgba(0, 0, 0, 0.9); 13} 14 15.maxim { 16 font-size: 50px; 17} 18 19.text-block { 20 width: 100vw; 21 height: 15vh; 22 text-align: center; 23 font-size: 5vh; 24 color: red; 25 margin-top: 7vh; 26} 27 28.text { 29 opacity: 0; 30 transition: opacity 2s ease; 31 transition: opacity 2s ease; 32} 33.text.is-active { 34 opacity: 1; 35 transition: opacity 2s ease; 36 transition: opacity 2s ease; 37}
HTML
1const txt = document.getElementsByClassName('text'); 2let txtIndex = -1; 3 4 function changeTxt() { 5 txtIndex++; 6 7 let currentNum = txtIndex % txt.length; 8 let nextNum = (txtIndex + 1) % txt.length; 9 let current = txt[currentNum]; 10 let next = txt[nextNum]; 11 12 setTimeout(function () { 13 current.classList.remove('is-active'); 14 }, 3000); 15 setTimeout(function () { 16 current.style.display = 'none'; 17 next.style.display = 'block'; 18 }, 5100); 19 20 setTimeout(function () { 21 next.classList.add('is-active'); 22 }, 5200); 23 }; 24 25 function showNextTxt() { 26 setInterval(changeTxt, 6000); 27 } 28 29changeTxt(); 30document.addEventListener('DOMContentLoaded', showNextTxt, false);
試したこと
コードの文字が間違えていないか確認しました。
エラーコードの内容が「Uncaught TypeErrorで未定義の' 'を読み取ることができません。」となっていることを確認し調べているのですが解決方法が見つかりません。
皆様の力を貸していただけないでしょうか
回答お願いします。
補足情報(FW/ツールのバージョンなど)
下記のサイトを見て作成しています。
https://chocolat5.com/tips/setinterval-animation/