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 đề

Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"<

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

kut0m.eur0
Chém gió tướng quân

kut0m.eur0

Tổng số bài gửi : 42
Points : 96
Reputation : 0
Join date : 01/02/2011
Age : 30
Đến từ : Hell.....
Tài năng của kut0m.eur0
Hạng: Chém gió tướng quân
Level:42
Tài năng:/300

Bài gửiTiêu đề: Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Icon_minitimeSat Feb 05, 2011 1:33 pm

Để “ ghi điểm” khi nói chuyện với con gái, con trai lưu ý một số điều sau nhé:

- Không…im như thóc. Vẫn biết con trai thường ít nói, không có khả năng “ diễn thuyết” trôi chảy như con gái nhưng ít nói không có nghĩa là… không biết nói gì, con trai nhé. Nếu vì quá bối rối, hồi hộp mà khi ngồi cùng con gái, con trai cứ im… như thóc hoặc lắp bắp những câu chẳng ra đâu vào đâu thì cũng không ổn chút nào. Con gái có thể thông cảm với phút ban đầu bối rối của con trai nhưng nếu lần nào gặp nhau, con trai cũng “ ca bài ca im lặng” để con gái…độc thoại một mình thì thật đáng chán.


- Không… ba hoa chích choè. Con gái không ưa con trai quá kiệm lời nhưng cũng chẳng thích chút nào những chàng trai thuộc dạng… ba hoa chích choè. Qúa tự tin vào tài ăn nói của mình, con trai cứ ba hoa hết chuyện này đến chuyện khác khiến con gái… đau cả tai thì con gái cũng sẽ “ trừ điểm” đấy. Chưa chắc nói nhiều đã là nói hay, nói đúng và khiến con gái thích đâu, con trai ạ.


- Đừng “ lên lớp” cho con gái. Sẽ có nhiều vấn đề mà con gái cần được

con trai giảng giải cho, như: cách sử dụng các loại máy móc hiện đại, bóng đá, nhạc rock… Nhưng trong khi nói, con trai thường lặp đi lặp lại một cách… tinh vi những câu như “ bạn có hiểu không” hoặc “ Bạn chẳng hiểu gì cả”… Con gái nghe sẽ tức anh ách vì bị con trai “ lên lớp” đấy


- Đừng biến mình thành người ba phải. Nếu để lấy lòng con gái mà bất cứ chuyện gì con gái nói, con trai cũng ừ ào cho là đúng, không bao giờ bày tỏ chính kiến riêng vì sợ con gái giận thì chắc chắn sẽ bị con gái giận luôn vì cái tính ba phải cho mà xem. Bởi nếu con trai cái gì cũng gật, cái gì cũng ừ thì con gái thà im lặng hoặc nói chuyện với… cái bóng của chính mình còn hơn.


- Hãy luôn…luyện giọng. Luyện giọng có nghĩa là con trai hãy luôn chú ý để học cách nói chuyện. Không phải ai sinh ra đã có năng khiếu ăn nói có duyên nên để khắc phục những nhược điểm mình mắc phải trong cách nói chuyện, con trai có ý thức rèn luyện từng chút một là sẽ sửa được thôi mà. Con gái thích con trai ăn nói chừng mực, điềm đạm và lịch sự. Điều đó thật ra không khó, đúng không con trai?

Chúc các br0s luôn “ hợp ro” với con gái khi nói chuyện! ( keke hasdf )

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

Về Đầu Trang Go down

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 đề: Re: Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Icon_minitimeSat Feb 05, 2011 6:35 pm

cai lay` hay lay`! :)) :)) :))

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

van_luv_hae
Vô danh

Tổng số bài gửi : 6
Points : 8
Reputation : 0
Join date : 01/02/2011
Tài năng của van_luv_hae
Hạng: Vô danh
Level:6
Tài năng:/300

Bài gửiTiêu đề: Re: Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Icon_minitimeSun Feb 13, 2011 5:34 pm

haizzzzzzzzzzzzz tưởng j nói thì nói z chứ tụi con trai ít thằng nào làm được l'

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

Về Đầu Trang Go down

kut0m.eur0
Chém gió tướng quân

kut0m.eur0

Tổng số bài gửi : 42
Points : 96
Reputation : 0
Join date : 01/02/2011
Age : 30
Đến từ : Hell.....
Tài năng của kut0m.eur0
Hạng: Chém gió tướng quân
Level:42
Tài năng:/300

Bài gửiTiêu đề: Re: Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Icon_minitimeSun Feb 13, 2011 8:51 pm

Ờ cáj đó cũng đúng.... ha ..... nhưg màk cũng tùy ng` chứ bộ......=]].... hs

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

Về Đầu Trang Go down

Sponsored content

Tài năng của Sponsored content
Hạng:
Level:
Tài năng:/300

Bài gửiTiêu đề: Re: Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"< Icon_minitime

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

Về Đầu Trang Go down

Tiêuđề

Để "ghi điểm" khi nói chjện vs con gáj...c0n traj lưu ý 1 số điều sau đây nhé..>"<

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ó-