私がやろうとしているのは、ページの読み込み時に、ユーザーがページの読み込み時にアラートボックスで定義した x 秒間、highpitchsound.wav (または .mp3) を再生するようにすることです。
アラートボックスには、テキストボックスと「確認」ボタンがあります。デフォルトのテキストは、5 秒の場合は 5、5000 ミリ秒の場合は 5000 です。
以前にjqueryで間隔を使用したり、html5でオーディオを数回いじったりしましたが、この2つを組み合わせる方法がわかりません。また、カスタムアラートボックスをオンロードする方法もわかりません。
<html>
<head>
<title>Audio Play Interval</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
});
</script>
</head>
<body>
<audio autoplay="true">
<source src="sounds/highpitchsound.mp3" type="audio/mpeg" />
<source src="sounds/highpitchsound.wav" type="audio/wav" />
<source src="sounds/highpitchsound.ogg" type="audio/ogg" />
Your browser does not support the audio element.
</audio>
</body>
</html>