Miền
Tây
Hội
Ngộ
Kết
Nối
Đam
Mê
CHUYỆN LẠ
GIẢI TRÍ
GÓC TÂM HỒN
KHÁC
MIỀN TÂY QUÊ TÔI
PHẦN MỀM
TRUYỆN
TÂM SỰ
THỦ THUẬT
WAPMASTER
RSS
MENU 2
VIDEO CLIP
TIN TỨC
ẢNH VUI
Tiện ích
Code thường dùng
Ảnh vui
Hosting miễn phí
Mã màu
Xem Kích thước màn hình máy của bạn
Tạo trái tim
Bản đồ
Xem bói
Giải mã code
Link web hay
Xem nhiều
SHARE Cách Ghost máy tính đơn giản
Hướng dẫn ghost máy tính đơn giản nhất. Ghost là một chương trình hỗ trợ cho máy tính, giúp máy tính khôi phục lại hệ thống. Nhờ ghost m...
Rùng mình status của thiếu nữ 9X trước khi bị xe cán qua đầu
Ở đoạn đường qua Bốt Hàng Đậu (Hà Nội) đã xảy ra tai nạn nghiêm trọng khiến thiếu nữ Hà thành tử vong. Nhiều người cảm thấy xót xa cho nạn...
Tìm blogger cùng "quê"
Giải pháp thật là đơn giản, bạn chỉ cần truy cập địa chỉ sau đây: http://www.blogger.com/profile-find.g?t=l&loc0=VN&loc1&loc2=H...
PHẦN MỀM chuyển đổi định dạng tốt cho ae
khi mở giao diện như hình dưới chúng ta chọn audio, video,cd, hoặc dvd tùy theo file muốn đổi, sau đó nhấn Add để chọn file ...
Bài học cực kì thú vị mà loài người học được từ loài gián
Đối với nhiều người, gián luôn được xem là loài động vật bé nhỏ dơ bẩn, đáng sợ và “cần phải được tiêu diệt”. Tuy nhiên, có một điều bất...
ngẫu nhiên
Bat JS len di
CONTACS
Mọi ý kiến đóng góp vui lòng liên hệ cho mình
Mail:
NGANNAMWAP@GMAIL.COM
Để
MIỀNTÂYWAP
ngày càng hoàn thiện hơn. thanks
BẠN BÈ
NGÀN NĂM
Rao vặt miền tây
NGUOIBANIT
whynotme
Teen66
Home »
WAPMASTER
Code chữ rơi từ trên xuống cho blog
MIỀNTÂYWAP
Code này là code tuyết rơi chế lại cho mới nhé
<!-- mientaywap -->
<script type='text/javascript'>
//<![CDATA[
var snowmax = 20;
số lượng
var snowcolor = new Array("#aaaacc", "#ddddFF", "#ccccDD");
var snowtype = new Array("Arial Black", "Arial Narrow", "Times", "Comic Sans MS");
var snowletter = "Miền Tây Wap";
tên bạn đặt
var sinkspeed = 0.9;
tốc độ rơi
var snowmaxsize = 20;
chữ lớn nhất
var snowminsize = 7;
chữ nhỏ nhất
var snowingzone = 1;
var snow = new Array();
var marginbottom;
var marginright;
var ScrollTop;
var timer;
var i_snow = 0;
var x_mv = new Array();
var crds = new Array();
var lftrght = new Array();
var browserinfos = navigator.userAgent;
var ie5 = document.all && document.getElementById && !browserinfos.match(/Opera/);
var ns6 = document.getElementById && !document.all;
var opera = browserinfos.match(/Opera/);
var browserok = ie5 || ns6 || opera;
function randommaker(a)
{
rand = Math.floor(a * Math.random());
return rand
}
function iecompattest()
{
return (document.compatMode && document.compatMode != "BackCompat") ? document.documentElement : document.body
}
function InitHeight() {
if (ie5 || opera) {
marginbottom = iecompattest().clientHeight + 5; //clientHeight;
marginright = iecompattest().scrollWidth + 5; //clientWidth
}
else {
if (ns6) {
marginbottom = self.innerHeight;
marginright = self.innerWidth
}
}
ScrollTop = document.body.scrollTop;
if (ScrollTop == 0) {
if (window.pageYOffset)
ScrollTop = window.pageYOffset;
else
ScrollTop = (document.body.parentElement) ? document.body.parentElement.scrollTop : 0;
}
marginbottom += ScrollTop;
}
function initsnow()
{
InitHeight()
var a = snowmaxsize - snowminsize;
for (i = 0;i <= snowmax;i++)
{
crds[i] = 0;
lftrght[i] = Math.random() * 15;
x_mv[i] = 0.03 + Math.random() / 10;
snow[i] = document.getElementById("s" + i);
snow[i].style.fontFamily = snowtype[randommaker(snowtype.length)];
snow[i].size = randommaker(a) + snowminsize;
snow[i].style.fontSize = snow[i].size + "px";
snow[i].style.color = snowcolor[randommaker(snowcolor.length)];
snow[i].sink = sinkspeed * snow[i].size / 5;
if (snowingzone == 1) { snow[i].posx = randommaker(marginright - snow[i].size) }
if (snowingzone == 2) { snow[i].posx = randommaker(marginright / 2 - snow[i].size) }
if (snowingzone == 3) { snow[i].posx = randommaker(marginright / 2 - snow[i].size) + marginright / 4 }
if (snowingzone == 4) { snow[i].posx = randommaker(marginright / 2 - snow[i].size) + marginright / 2 }
snow[i].posy = randommaker(2 * marginbottom - marginbottom - 2 * snow[i].size);
snow[i].style.left = snow[i].posx + "px";
snow[i].style.top = snow[i].posy + "px"
}
movesnow()
}
function movesnow()
{
InitHeight();
for (i = 0; i <= snowmax; i++)
{
crds[i] += x_mv[i];
snow[i].posy += snow[i].sink;
snow[i].style.left = snow[i].posx + lftrght[i] * Math.sin(crds[i]) + "px";
snow[i].style.top = snow[i].posy + "px";
if (snow[i].posy >= marginbottom - 2 * snow[i].size || parseInt(snow[i].style.left) > (marginright - 3 * lftrght[i]))
{
if (snowingzone == 1) { snow[i].posx = randommaker(marginright - snow[i].size) }
if (snowingzone == 2) { snow[i].posx = randommaker(marginright / 2 - snow[i].size) }
if (snowingzone == 3) { snow[i].posx = randommaker(marginright / 2 - snow[i].size) + marginright / 4 }
if (snowingzone == 4) { snow[i].posx = randommaker(marginright / 2 - snow[i].size) + marginright / 2 }
snow[i].posy = ScrollTop
}
}
var a = setTimeout("movesnow()", 60)
}
function hidesnow()
{
if (window.timer) { clearTimeout(timer) }
for (i = 0;i <= snowmax;i++)
{
document.getElementById("s" + i).style.visibility = "hidden"
}
}
for (i = 0;i <= snowmax;i++)
{
document.write('<div id="s' + i + '" style="POSITION: absolute; Z-INDEX: 9' + i + "; VISIBILITY: visible; TOP:-" + snowmaxsize + 'px; LEFT: 15px;">' + snowletter + "</div>")
}
if (browserok)
{ initsnow() }
else
{ document.write('Votre navigateur ne supporte pas ce Javascript, ') };
//]]>
</script>
Tags:
WAPMASTER
Comments[ 0 ]
Đăng nhận xét
« Bài đăng Mới hơn
Trang chủ
Bài đăng Cũ hơn »
Xây dựng và phát triển bởi:
MIỀNTÂYWAP
2®14 -
Nguyễn Tấn Quý
All Rights Reserved.
Comments[ 0 ]
Đăng nhận xét