
A awesome banner rotator to use with your blogspot and blogger blogs, this banner rotator will also work on any website.Just add banner image urls and links.
ad as many banners as you like. This script comes as is, we only ask you leave the credits intact. copy and paste simple, no database, light weight simple javascript. try on your blog. choose what ads you run on your site.
Change the Width Height and title text
var img_width = "300"; var img_height = "250"; var img_title = "Click Here";
Insert images and links add unlimited links by continuing the number sequence of adimg and adlinks
//insert here your images src adimg[0]='https://example.com/image.png'; adimg[1]='https://example.com/image.png'; adimg[2]='https://example.com/image.png';
//insert here your links adlinks[0]='https://example.com'; adlinks[1]='https://example.com'; adlinks[2]='https://example.com';
CODE:
<script language=javascript> /* +---------------------------------------------------------+ | Ads For Blogger Copyright : www.oxaus.com | +---------------------------------------------------------+ | This Copyright Notice Must Remains intact. | +---------------------------------------------------------+ */ var img_width = "300"; var img_height = "250"; var img_title = "Click Here"; var adimg=new Array() //insert here your images src adimg[0]='https://example.com/image.png'; adimg[1]='https://example.com/image.png'; adimg[2]='https://example.com/image.png'; var adlinks=new Array() //insert here your links adlinks[0]='https://example.com'; adlinks[1]='https://example.com'; adlinks[2]='https://example.com'; var xy=Math.floor(Math.random()*adimg.length); document.write('<a href="'+adlinks[xy]+'" target="_blank"><img src="'+adimg[xy]+'" width="'+img_width+'" height="'+img_height+'" alt="'+img_title+'"></a>'); </script>
View On Pastebin : https://pastebin.com/embed/usJBz0Ha