横に広告用のスペースがある Web サイトに取り組んでいます。ページが読み込まれるたびに異なる広告を表示できるようにしたいと考えています。広告が純粋に画像である場合にこれを行う方法は知っていますが、これらの一部を youtube ビデオまたは他のメディアソースにしたい.
これには JavaScript を使用したいのですが、できるだけスクリプトを使用したくありません。
どんな助けでも大歓迎です。
画像の場合、次のコードのようなものを使用します。
<script type="text/javascript">
//Random Banner image on Page Reload
//store the images in arrays below
images = new Array(5);
images[0] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
images[1] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
images[2] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
images[3] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
images[4] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
</script>