Forum Moderators: coopster
How to make correct script or there is some made application that banners change and under this are numbers like 1,2,3,4 and user can move between this banners. Banners will be dinamic changed from applications like shop websites...
I have seen that there are dinamic banners but when I see with RIGHT click it will not show FLASH application.
Is this FLASH or other applications for banners?
function rotateBanner(inx){
document.getElementById("bannerImg").src=bannerList[inx];
}
window.onload = function () { rotateBanner(0) };
</script>
</head>
<body>
<div id="banner"><img src="" id="bannerImg" alt="Banner Image" />
<img src="number1.jpg" onclick="rotateBanner(0)" />
<img src="number2.jpg" onclick="rotateBanner(1)" />
<img src="number3.jpg" onclick="rotateBanner(2)" />
<img src="number4.jpg" onclick="rotateBanner(3)" />
</div>
</body>
</html>