Code Chèn Quảng Cáo cho Web Blog
Trong bài nầy, Khanhnguyen' s blog giới thiệu cùng các bạn một cửa sổ quãng cáo có thể cho đóng mỡ được từ trên các góc trái hoặc phải của Blogspot, khác với các cửa sổ Like Fanpage ở dạng thụt vô, thò ra. Ở cạnh trên của cửa sổ có một nút [x], khi Click chuột vào, lập tức cửa sổ sẽ được thu gọn lại.
Đây là bộ source code mình sưu tập được ở Blogspot http://thegioiblogaz.blogspot.com/.
Code chèn quảng cáo góc trái website:
<script type="text/javascript">
function hide_float_left() {
var content = document.getElementById('float_content_left');
var hide = document.getElementById('hide_float_left');
if (content.style.display == "none")
{content.style.display = "block"; hide.innerHTML = '<a href="javascript:hide_float_left()">Tắt quảng cáo [X]</a>'; }
else { content.style.display = "none"; hide.innerHTML = '<a href="javascript:hide_float_left()">Xem quảng cáo...</a>';
}
}
</script>
<style>
.float-ck { position: fixed; bottom: 0px; z-index: 9000}
* html .float-ck {position:absolute;bottom:auto;top:expression(eval (document.documentElement.scrollTop+document.docum entElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0))) ;}
#float_content_left {border: 1px solid #01AEF0;}
#hide_float_left {text-align:left; font-size: 11px;}
#hide_float_left a {background: #01AEF0; padding: 2px 4px; color: #FFF;}
</style>
<div class="float-ck" style="left: 0px" >
<div id="hide_float_left">
<a href="javascript:hide_float_left()">Tắt Quảng Cáo [X]</a></div>
<div id="float_content_left">
<!-- Start-->
<embed src="http://www.cn11111.com/swf/fengjing/17.swf" width="250" height="200" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" wmode="transparent" allowScriptAccess="always"/>
<!-- End -->
</div>
</div>
Code chèn quảng cáo góc phải website:
<script type="text/javascript">
function hide_float_right() {
var content = document.getElementById('float_content_right');
var hide = document.getElementById('hide_float_right');
if (content.style.display == "none")
{content.style.display = "block"; hide.innerHTML = '<a href="javascript:hide_float_right()">Tắt quảng cáo [X]</a>'; }
else { content.style.display = "none"; hide.innerHTML = '<a href="javascript:hide_float_right()">Xem quảng cáo...</a>';
}
}
</script>
<style>
.float-ck { position: fixed; bottom: 0px; z-index: 9000}
* html .float-ck {position:absolute;bottom:auto;top:expression(eval (document.documentElement.scrollTop+document.docum entElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0))) ;}
#float_content_right {border: 1px solid #01AEF0;}
#hide_float_right {text-align:right; font-size: 11px;}
#hide_float_right a {background: #01AEF0; padding: 2px 4px; color: #FFF;}
</style>
<div class="float-ck" style="right: 0px" >
<div id="hide_float_right">
<a href="javascript:hide_float_right()">Tắt Quảng Cáo [X]</a></div>
<div id="float_content_right">
<!-- Start-->
<embed src="http://www.cn11111.com/swf/fengjing/17.swf" width="250" height="200" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" wmode="transparent" allowScriptAccess="always"/>
<!-- End -->
</div>
</div>
Ghi chú:
Thay thế nội dung code quảng cáo của bạn vào giữa dòng <!– Start –> <!– End–>.Trong trường hợp trên là địa chỉ của một file flash http://www.cn11111.com/swf/fengjing/17.swf
Bạn có thể thử với địa chỉ của các file flash ở bài: Flash ảnh thiên nhiên đẹp
Một số thuộc tính trên Source Code trên cũng đều có thể thay đổi giá trị được. Các bạn có thể tùy nghi sử dụng. Chúc các bạn thành công.
Khanhnguyen' s blog