Script For Floating Advertisement

If you want your ad floating on the blog here are a collection of java scripts that can be utilized for that purpose. You can copy the script below, and you paste in the gadget html / java script to your blog.


<style type="text/css">
#gb{
position:fixed;
top:270px;
left:250px;
z-index:+1000;
}
* html #gb{position:relative;}


.gbcontent{
float:right;
border:0px solid #A5BD51;
background:transparant;
padding:0px;
}
</style>

<script type="text/javascript">
function showHideGB(){
var gb = document.getElementById("gb");
var w = gb.offsetWidth;
gb.opened ? moveGB(0, 30-w) : moveGB(20-w, 0);
gb.opened = !gb.opened;
}
function moveGB(x0, xf){
var gb = document.getElementById("gb");
var dx = Math.abs(x0-xf) > 10 ? 5 : 1;
var dir = xf>x0 ? 1 : -1;
var x = x0 + dx * dir-100;
gb.style.top = x.toString() + "px";
if(x0!=xf){setTimeout("moveGB("+x+", "+xf+")", 10);}
}
</script>

<div id="gb">

<div class="gbtab" onclick="showHideGB()"> </div>

<div class="gbcontent">

<div style="text-align:right">
<a href="javascript:showHideGB()">
<b>
Close Ads =>[x]
</b>
</a>

</div>
<center>
YOUR AD HERE
</center>

<script type="text/javascript">
var gb = document.getElementById("gb");
gb.style.center = (20-gb.offsetWidth).toString() + "px";
</script></div></div>

May this article you want



0 komentar:

Post a Comment

Give me your comment