11a15 rules!
<script>
var pictureSrc ="dandd/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);</script>
11a15 rules!
<script>
var pictureSrc ="dandd/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);</script>
11a15 rules!
Bạn có muốn phản ứng với tin nhắn này? Vui lòng đăng ký diễn đàn trong một vài cú nhấp chuột hoặc đăng nhập để tiếp tục.


Nơi dành cho tất cả mem 11a15 và các a khác có thể tự do 8 hay up bất cứ gì mình thích :)
 
Trang ChínhTìm kiếmLatest imagesĐăng kýĐăng Nhập

Share|
Tiêu đề

mat cong thang amin lai bao ko koa tinh than xay dung

Xem chủ đề cũ hơn Xem chủ đề mới hơn Go down
Tác giảThông điệp

Zd0jk0n
Chém gió tướng quân

Zd0jk0n

Tổng số bài gửi : 33
Points : 59
Reputation : 0
Join date : 30/01/2011
Age : 30
Đến từ : 11a15
Tài năng của Zd0jk0n
Hạng: Chém gió tướng quân
Level:33
Tài năng:/300

Bài gửiTiêu đề: mat cong thang amin lai bao ko koa tinh than xay dung mat cong thang amin lai bao ko koa tinh than xay dung Icon_minitimeTue Feb 01, 2011 8:29 pm

Một ông nông dân lái xe công nông chở con gái lớn ra tỉnh mua sắm. Ông mua cho cô gái một sợi dây chuyền vàng rất đẹp. Trên đường về hai bố con bị một toán cướp chặn đường cướp sạch cả xe lẫn đồ . Hai người thất thểu đi bộ tiếp. Ông bố nói:
- Đời không biết thế nào mà lần. Đang vui vẻ thế mà loắng cái đã mất hết cả. Tội nghiệp con bị chúng nó lấy mất cái dây chuyền đẹp.
Cô gái nhìn quanh, thò tay vào chỗ kín lấy ra sợi dây chuyền. Ông bố vừa mừng vừa ngạc nhiên. Ngẫm nghĩ một lúc ông nói:
- Chán quá, hôm nay mà mẹ con cũng đi cùng thì chúng ta bây giờ vẫn còn xe công nông để đi !

Trong lớp học, cô giáo hỏi Huy :

- Huy cho cô biết, trên cây có 10 con chim, một người thợ săn bắn chết một con, hỏi còn mấy con?
- Dạ, tiếng súng nổ làm chim bay đi hết, làm gì còn con nao?
- Sai, súng săn bây giờ là súng hơi, làm gì có tiếng nổ, còn 9 con. Tuy nhiên, cô rất thích kiểu suy nghĩ của em.
- Thế em đố lại cô 1 câu có được không ạ?
- Được.
- Có 3 cô gái cùng ăn kem, một cô cắn từng miếng kem một, một cô ngậm và mút que kem, một cô thì để cho kem chảy vào miệng rồi nuốt, hỏi trong 3 cô ấy cô nào đã có chồng rồi?
- Cô giáo suy nghĩ một lúc rồi đỏ mặt, bảo:
- Huy, em rất bậy, đi ra ngoài viết bản kiểm điểm.
- Huy trả lời:
- Thưa cô, người có chồng là người tay có đeo nhẫn cưới. Tuy nhiên, em rất thích kiểu suy nghĩ của cô

ào nhà vệ sinh công cộng, vừa ngồi xuống thì một giọng nữ từ buồng bên kia vọng sang.

- Ới, anh có suôn sẻ không?.

Vốn không thích bắt chuyện với người lạ, nhưng khó mà từ chối giọng nói ngọt ngào đó, tôi trả lời: Ờ, tôi cũng ổn.

Giọng bên kia lại vọng sang: Anh cảm thấy thế nào?

Bắt đầu bực mình: Tôi thấy cũng thoải mái.

Giọng bên kia bối rối: Chắc em phải cúp máy thôi, vì cứ mỗi lần em hỏi anh thì có thằng cha mắc dịch ở buồng vệ sinh bên cạnh lại nhảy vô giành trả lời.

Trong công viên, cô gái hỏi chàng trai: Anh ơi sao mắt anh to thế? Chàng trai trả lời: mắt anh to vì hồi bé anh khóc nhiều. Cô gái tiếc nuối: Thế sao hồi bé anh không đi tiểu nhiều?

Cô bé mới lớn, hay thắc mắc đủ mọi chuyện trên đời. Một hôm ra bãi biển thấy một cậu bé trai cởi truồng, cô bé quay sang hỏi mẹ:
- Mẹ ơi thằng bé kia có cái gì kìa?
Mẹ cô trả lời cho qua chuyện:
- Đấy là cái còi.
Cô bèn tiến lại gần cậu bé và chăm chú quan sát, một lúc sau cô bé háo hức trở lại nói với mẹ:
- Mẹ ơi, đúng là cái còi thật. Nhưng lạ lắm cơ, khi con thổi nó lại kêu oai oái đằng mồm ấy.

Trong công viên, một đôi trai gái đang tâm sự.
Cô gái: Em tính đi giải phẫu nâng ngực? Ý anh sao?
Chàng trai: Em phải tôn trọng sự thật chứ, dù cho sự thật thế nào đi chăng nữa..
Một lát sau..
Cô gái: Anh thôi đi, sao cứ bóp méo sự thật mãi thế?
( e noi that la e copy day chu ko phai e nghi~ ra dau! )

Hãy cảm ơn bài viết của Zd0jk0n bằng cách bấm vào"" nhé!!!

Về Đầu Trang Go down

Khách vi

Tài năng của Khách vi
Hạng: Khách viếng thăm
Level:
Tài năng:/300

Bài gửiTiêu đề: Re: mat cong thang amin lai bao ko koa tinh than xay dung mat cong thang amin lai bao ko koa tinh than xay dung Icon_minitimeTue Feb 01, 2011 9:24 pm

Cái tittle của thread thật là vkl :roll:

Hãy cảm ơn bài viết của Khách vi bằng cách bấm vào"" nhé!!!

Về Đầu Trang Go down

Tiêuđề

mat cong thang amin lai bao ko koa tinh than xay dung

Xem chủ đề cũ hơn Xem chủ đề mới hơn Về Đầu Trang
Trang 1 trong tổng số 1 trang
::.
Permissions in this forum:Bạn không có quyền trả lời bài viết
11a15 rules! :: Teen place :: Phòng chém gió-