Code:
<script type="text/javascript">
window.onload = function() {
/*********Edit values here for your pictures*******************/
var
pic1='https://store-a32dc.mybigcommerce.com/product_images/uploaded_images/MOMSHOPPING2.gif',
pic2='https://store-a32dc.mybigcommerce.com/product_images/uploaded_images/RRR.gif',
pic3='https://store-a32dc.mybigcommerce.com/product_images/uploaded_images/2photos.jpg';
var rangPics = [pic1, pic2, pic3]; // Add all the picture variables to this array.
var pause = 3000; // milliseconds pause between images
/***************End of Edit*********************************/
var pl, rangRandom = Math.floor(Math.random() * (pl = rangPics.length));
function loadpic() {
document.getElementById('show').innerHTML = '<img src="' + rangPics[rangRandom] + '" alt="myimage" style="width:950px;height:450px;">';
}
loadpic();
setInterval(function(){
rangRandom = ++rangRandom % pl;
loadpic();
}, pause);
};
</script>
<div id="show" style="text-align:center;width:950px;border:3px double #222;padding:10px;"></div>
Bookmarks