code hoa mai rơi  F6840c11

Trang ChínhTrang Chính   Shop  GalleryGallery  Latest imagesLatest images  Tìm kiếmTìm kiếm  Đăng kýĐăng ký  Đăng NhậpĐăng Nhập  
Chào bạn, khách viếng thăm !
Đăng Ký
:: Quên mật khẩu ::



Trang 1 trong tổng số 1 trang
Share|

code hoa mai rơi

Xem chủ đề cũ hơn Xem chủ đề mới hơn code hoa mai rơi  Collap12code hoa mai rơi  Collap13
Admin
Admin
Thông tin thành viên :
Click !
Nam
Tuổi : 33
Posts Posts : 2319
Points Points : 6889
Thanked Thanked : 77
Join date10/12/2010
Birthday Birthday : 27/02/1991
Đến từ Đến từ : Hải Phòng
I'm I'm : 26
Status : DarkNo1<=> ClubTeen9x
avatar-dulieu : 57,13100|50,11784|49,10840|64,12636|51,11465|48,12265|58,12156|66,11440
Nam Tuổi : 33
Posts Posts : 2319
Points Points : 6889
Thanked Thanked : 77
Join date10/12/2010
Birthday Birthday : 27/02/1991
Đến từ Đến từ : Hải Phòng
I'm I'm : 26
Status : DarkNo1<=> ClubTeen9x
avatar-dulieu : 57,13100|50,11784|49,10840|64,12636|51,11465|48,12265|58,12156|66,11440
   

Shop Avatar
Bài gửiTiêu đề: code hoa mai rơi code hoa mai rơi  I_icon_minitimeWed Jan 04, 2012 7:58 am

DarkNo1<=> ClubTeen9x
Tiêu đề: code hoa mai rơi
---------------------------------------------------
Cho Ðiểm Chủ Ðề Này
Các bạn thêm code này vào index nhé
Code:
<script type="text/javascript" src="http://www.4allvn.biz/2012/js/hoamai.js"></script>
Nhét chỗ nào cũng được vào index là được!
Hoặc sau thẻ
Code:
<head>
Code js: các bạn lưu lại thành file đuôi .js hoặc nhét vào FM nhé
Code:
// JavaScript Document
var pictureSrc ="http://www.4allvn.biz/2012/images/hoamai.png"; //the location of the snowflakes
var pictureWidth = 30; //the width of the snowflakes
var pictureHeight = 30; //the height of the snowflakes
var numFlakes = 5; //the number of snowflakes
var downSpeed = 0.01; //the falling speed of snowflakes (portion of screen per 100 ms)
var lrFlakes = 10; //the speed that the snowflakes should swing from side to side


if( typeof( numFlakes ) != 'number' || Math.round( numFlakes ) != numFlakes || numFlakes < 1 ) { numFlakes = 10; }

//draw the snowflakes
for( var x = 0; x < numFlakes; x++ ) {
if( document.layers ) { //releave NS4 bug
document.write('<layer
 id="snFlkDiv'+x+'"><imgsrc="'+pictureSrc+'"
height="'+pictureHeight+'"width="'+pictureWidth+'" alt="*"
border="0"></layer>');
} else {
document.write('<div
style="position:absolute;"id="snFlkDiv'+x+'"><img
src="'+pictureSrc+'"height="'+pictureHeight+'" width="'+pictureWidth+'"
alt="*"border="0"></div>');
}
}

//calculate initial positions (in portions of browser window size)
var xcoords = new Array(), ycoords = new Array(), snFlkTemp;
for( var x = 0; x < numFlakes; x++ ) {
xcoords[x] = ( x + 1 ) / ( numFlakes + 1 );
do { snFlkTemp = Math.round( ( numFlakes - 1 ) * Math.random() );
} while( typeof( ycoords[snFlkTemp] ) == 'number' );
ycoords[snFlkTemp] = x / numFlakes;
}

//now animate
function flakeFall() {
if( !getRefToDivNest('snFlkDiv0') ) { return; }
var scrWidth = 0, scrHeight = 0, scrollHeight = 0, scrollWidth = 0;
//find screen settings for all variations. doing this every time allows for resizing and scrolling
if( typeof( window.innerWidth ) == 'number' ) { scrWidth = window.innerWidth; scrHeight = window.innerHeight; } else {
if( document.documentElement && (document.documentElement.clientWidth ||document.documentElement.clientHeight ) ) {
scrWidth = document.documentElement.clientWidth; scrHeight = document.documentElement.clientHeight; } else {
if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
scrWidth = document.body.clientWidth; scrHeight = document.body.clientHeight; } } }
if( typeof( window.pageYOffset ) == 'number' ) { scrollHeight = pageYOffset; scrollWidth = pageXOffset; } else {
if(
 document.body && ( document.body.scrollLeft
||document.body.scrollTop ) ) { scrollHeight =
document.body.scrollTop;scrollWidth = document.body.scrollLeft; } else {
if(document.documentElement
 && (document.documentElement.scrollLeft
||document.documentElement.scrollTop ) ) { scrollHeight
=document.documentElement.scrollTop; scrollWidth
=document.documentElement.scrollLeft; } }
}
//move the snowflakes to their new position
for( var x = 0; x < numFlakes; x++ ) {
if( ycoords[x] * scrHeight > scrHeight - pictureHeight ) { ycoords[x] = 0; }
var divRef = getRefToDivNest('snFlkDiv'+x); if( !divRef ) { return; }
if( divRef.style ) { divRef = divRef.style; } var oPix = document.childNodes ? 'px' : 0;
divRef.top = ( Math.round( ycoords[x] * scrHeight ) + scrollHeight ) + oPix;
divRef.left
 = ( Math.round( ( ( xcoords[x] * scrWidth ) - (pictureWidth / 2 ) ) + (
 ( scrWidth / ( ( numFlakes + 1 ) * 4 ) ) * (Math.sin( lrFlakes *
ycoords[x] ) - Math.sin( 3 * lrFlakes * ycoords[x]) ) ) ) + scrollWidth )
 + oPix;
ycoords[x] += downSpeed;
}
}

//DHTML handlers
function getRefToDivNest(divName) {
if( document.layers ) { return document.layers[divName]; } //NS4
if( document[divName] ) { return document[divName]; } //NS4 also
if( document.getElementById ) { return document.getElementById(divName); } //DOM (IE5+, NS6+, Mozilla0.9+, Opera)
if( document.all ) { return document.all[divName]; } //Proprietary DOM - IE4
return false;
}

window.setInterval('flakeFall();',100);
Đây là hoa mai mình đã sử dụng [You must be registered and logged in to see this link.]

này về rồi up lên forum bạn rồi sửa link cho phù hợp

Cách add js vào FM các bạn tự tìm hiểu đã có bài hướng dẫn rồi nhé!

Happy new year!



Tài sản: Admin

Tài sản
.: code hoa mai rơi  Thdhbc code hoa mai rơi  Thdhbg code hoa mai rơi  Theagle_medal_50x50 code hoa mai rơi  Thhuanchuong3 code hoa mai rơi  Thhuanchuong4 code hoa mai rơi  Thhuanchuong5 code hoa mai rơi  Thmedal271 code hoa mai rơi  Thknst code hoa mai rơi  Thmedal2 code hoa mai rơi  Thmedal7 code hoa mai rơi  Thmedal121 code hoa mai rơi  Thmedal27 code hoa mai rơi  Thmedal241 code hoa mai rơi  Thmedal21 code hoa mai rơi  Thmedal-10 code hoa mai rơi  Medal1152 code hoa mai rơi  Medal1012 code hoa mai rơi  Medal145 code hoa mai rơi  Medal101jg6 code hoa mai rơi  Medal81kl2 code hoa mai rơi  Medal61qo1 code hoa mai rơi  Medal51wb6 code hoa mai rơi  Medal51 code hoa mai rơi  Medal41 code hoa mai rơi  Medal31cj0 code hoa mai rơi  Medal24 code hoa mai rơi  Medal22 code hoa mai rơi  Medal21 code hoa mai rơi  Medal20 code hoa mai rơi  Medal18 code hoa mai rơi  Medal17 code hoa mai rơi  Medal16 code hoa mai rơi  Medal15 code hoa mai rơi  Medal14 code hoa mai rơi  Medal13 code hoa mai rơi  Medal12 code hoa mai rơi  Medal11ai9 code hoa mai rơi  Medal11 code hoa mai rơi  Medal10 code hoa mai rơi  Medal9 code hoa mai rơi  Medal81 code hoa mai rơi  Medal7 code hoa mai rơi  Medal6 code hoa mai rơi  Medal5 code hoa mai rơi  Medal4 code hoa mai rơi  13
Danh vọng Danh vọng:
code hoa mai rơi  Img_le10100/100code hoa mai rơi  Img_ba10  (100/100)
Sinh lực Sinh lực:
code hoa mai rơi  Img_le10-1100/100code hoa mai rơi  Img_ba10  (100/100)
Chữ Ký: Admin
Về Đầu Trang
Go down

Chia sẻ
Add to Tagvn  Add to Linkhay  Add to TrumSEO  Add to Sig  Add to VietKick  Add to Buzz  Add to Google Buzz  Add to Facebook    

¨‘°ºO(¯°•. Xem tiếp 1 số bài viết cùng chuyên mục!.•°¯)Oº°‘¨

code hoa mai rơi  Collap10code hoa mai rơi  Collap13
Bài gửiTác giảTrả lờiLượt xemNgười gửi cuối


Trang 1 trong tổng số 1 trang

code hoa mai rơi

Xem chủ đề cũ hơn Xem chủ đề mới hơn Về Đầu Trang

Trả lời nhanh

code hoa mai rơi  Collap10code hoa mai rơi  Collap13
-Khách viếng thăm vui lòng đăng nhập để có thể trả lời bài viết!
-Quyền hạn trong chuyên mục:
Bạn không có quyền gửi chủ đề mới
Bạn không có quyền sửa bài viết của mình
Bạn không có quyền trả lời bài viết

  » Yêu cầu viết bài bằng tiếng việt có dấu!
  » Không spam, đăng ảnh đồi truỵ hay sử dụng từ ngữ vô văn hoá!
  » Không gây xích mích, vui lòng tôn trọng thành viên khác!
  
  
Liên hê với chúng tôi | Http://ClubTeen9x.net |Trên lên trên
Diễn đàn sáng lập bởi: Mr.Ben
Diễn đàn phát triển bởi: Toàn bộ thành viên diễn đàn
Ðịa chỉ Mạng: ClubTeen9x.net
Ðiện thoại: 01228397557 - Email: nhocpro_clubteen9x@yahoo.com
Website Http://ClubTeen9x.net
Skin rip By Việt K
Powered by phpBB2® Version 2.0
Copyright © 2011, FORUMOTION - ClubTeen9x.net
Support by Forumotion. Diễn đàn hiển thị tốt nhất trên
với độ phân giải 1024x768 trở lên.

Free forum | ©phpBB | Free forum support | Báo cáo lạm dụng | Thảo luận mới nhất