(Sample)
以下は5秒後に注意書きを消すサンプルです。
setTimeout()を使うことで一定時間経過後に処理を実行させることができます。
この関数の第一引数は実行させたい関数名です。
第二引数は経過時間でミリ秒単位で指定します。
なお、このサンプルでは、ブートストラップを使用しています。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>disappear-after-5seconds.html</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="alert alert-danger" role="alert" id="temporaryBox">
この注意書きは5秒後に消えます!
</div>
<script>
// setTimeout()関数を使用して、5秒後にcloseBox()関数を実行する
setTimeout(closeBox,5000);
// closeBox()関数の定義
function closeBox() {
// IDが"temporaryBox"である要素の表示を"none"に設定し、注意書きを非表示にする
document.querySelector("#temporaryBox").style.display = "none";
}
</script>
</body>
</html>