ลำดับตอนที่ #15
คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
ลำดับตอนที่ #15 : sweet
<style type="text/css">
BODY
{SCROLLBAR-FACE-COLOR:#FFFFFF;
SCROLLBAR-HIGHLIGHT-COLOR:#000000;
SCROLLBAR-SHADOW-COLOR:#000000;
SCROLLBAR-3DLIGHT-COLOR:#000000;
SCROLLBAR-ARROW-COLOR:#000000;
SCROLLBAR-TRACK-COLOR:#000000;
SCROLLBAR-DARKSHADOW-COLOR:#000000}</style>
<script type="text/javascript">
// <![CDATA[
var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
var sparkles=50;
/****************************
* Tinkerbell Magic Sparkle *
*(c)2005-11 mf2fm web-design*
* http://www.mf2fm.com/rv *
* DON'T EDIT BELOW THIS BOX *
****************************/
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="2px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="2px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown && starx[i]>0) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown && tinyx[i]>0) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
var sw_min=999999;
var sh_min=999999;
if (document.documentElement && document.documentElement.clientWidth) {
if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
}
if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
}
if (document.body.clientWidth) {
if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
}
if (sw_min==999999 || sh_min==999999) {
sw_min=800;
sh_min=600;
}
swide=sw_min;
shigh=sh_min;
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
return (div);
}
function newColour() {
var c=new Array();
c[0]=255;
c[1]=Math.floor(Math.random()*256);
c[2]=Math.floor(Math.random()*(256-c[1]/2));
c.sort(function(){return (0.5 - Math.random());});
return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
}
// ]]>
</script>
<style type="text/css">
BODY {cursor:url(http://i1318.photobucket.com/albums/t660/keynaftyaless/m3_zps7ec72f89.png),auto;}a {cursor:url(http://i1318.photobucket.com/albums/t660/keynaftyaless/m4_zps6f9efc4d.png),auto;}</style>
<style name="captain" type="text/css">
a:link,a:visited{
-webkit-transition: 0.4s;
-moz-transition: 0.4s;
color:#222;
text-decoration:none;
padding:2px;
background:transparent;
box-shadow: inset 0px 0 0px 0 #0000;}
a:hover{
-webkit-transition: 0.4s;
-moz-transition: 0.4s;
overflow:hidden;
box-shadow: inset 800px 0 0px 0 #ffff;
text-decoration:none;}</style>
<style type="text/css">
.left,.right{border:none;}
.mainborder{ border:none;}
table {border:none;}</style>
<style type="text/css">
.headtable, .head2, .modulebg1,
#footer, #header, #neck, .left,
#module_left .modulebg2, #module_right .modulebg2,
.hr1, .hr2, .borderlinks
{ display: none !important; }
.mainborder
{ border: 0px !important; }</style>
<style type="text/css">
#apDiv1 {
position:absolute;
width:200px;
height:115px;
z-index:1;
left: 605px;
top: 187px;
}
body {
background-color: #F36;
}
#apDiv2 {
position:fixed;
width:200px;
height:115px;
z-index:2;
left: 9px;
top: 2px;
}
#apDiv3 {
position:fixed;
width:334px;
height:408px;
z-index:3;
left: 165px;
top: 102px;
}
#apDiv4 {
position:fixed;
width:286px;
height:70px;
z-index:4;
left: 176px;
top: 460px;
}
#apDiv5 {
position:fixed;
width:200px;
height:115px;
z-index:5;
left: 9px;
top: 398px;
}
#apDiv6 {
position:fixed;
width:219px;
height:167px;
z-index:6;
left: 732px;
top: 41px;
}
#apDiv7 {
position:fixed;
width:181px;
height:109px;
z-index:7;
left: 753px;
top: 84px;
}
#apDiv8 {
position:fixed;
width:300px;
height:43px;
z-index:8;
left: 645px;
top: 42px;
}
#apDiv9 {
position:fixed;
width:509px;
height:40px;
z-index:9;
left: 175px;
top: 64px;
}
#apDiv10 {
position:fixed;
width:43px;
height:202px;
;
left: 0px;
top: 6px;
}
#apDiv11 {
position:fixed;
width:27px;
height:97px;
;
left: 0px;
top: 6px;
}
#apDiv12 {
position:fixed;
width:28px;
height:115px;
;
left: -1px;
top: 122px;
}</style>
<div id="apDiv1">
<img height="529" src="http://image.dek-d.com/27/0257/0448/117177416" width="585" /></div>
<div id="apDiv2">
<img height="626" src="http://image.dek-d.com/27/0257/0448/117177417" width="631" /></div>
<div id="apDiv3">
<center style="color:#fffff">
<div css="pet" style="letter-spacing: 0.4px; width: 334px; height: 405px; overflow: auto; border: 1px dashed;">
<p style="margin: 0px 0px 6px; color: rgb(20, 24, 35); font-family: Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif; font-size: 16px; line-height: 22.079999923706055px; background-color: rgb(255, 255, 255); text-align: left;">
</p>
<p style="margin: 0px 0px 6px; color: rgb(20, 24, 35); font-family: Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif; font-size: 16px; line-height: 22.079999923706055px; background-color: rgb(255, 255, 255); text-align: center;">
<img src="http://image.dek-d.com/27/0257/0448/117182741" style="letter-spacing: 0.4px; background-color: rgb(255, 51, 102); color: rgb(34, 34, 34); font-family: Tahoma; font-size: 12px; height: 313px; width: 250px;" /></p>
<p style="margin: 0px 0px 6px; color: rgb(20, 24, 35); font-family: Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif; font-size: 16px; line-height: 22.079999923706055px; background-color: rgb(255, 255, 255); text-align: center;">
<span style="font-size:14px;">อ่านช้าๆ ใจเย็นๆ แล้วคุณจะขำและยิ้มกับตัวเอง</span></p>
<p style="margin: 0px 0px 6px; color: rgb(20, 24, 35); font-family: Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif; font-size: 16px; line-height: 22.079999923706055px; background-color: rgb(255, 255, 255); text-align: left;">
<span style="font-size:14px;"> <u> </u> </span><br />
<span style="font-size: 14px; text-align: left; letter-spacing: 0.4px;"> Five facts about You You You You You You You You You You You You You You You You You You You You </span><span style="font-size: 14px; letter-spacing: 0.4px;"> You You You You You You You You You You You </span><span style="font-size: 14px; letter-spacing: 0.4px;"> You You You You You You You You You You You</span></p>
<p style="margin: 6px 0px; color: rgb(20, 24, 35); font-family: Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif; font-size: 16px; line-height: 22.079999923706055px; background-color: rgb(255, 255, 255); text-align: center;">
<span style="font-size:14px;"><u> </u></span></p>
<p style="margin: 6px 0px; color: rgb(20, 24, 35); font-family: Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif; font-size: 16px; line-height: 22.079999923706055px; background-color: rgb(255, 255, 255); text-align: left;">
<span style="font-size:14px;"> 1.คุณขี้เกียจ คุณไม่ได้อ่านทุกตัวที่มีคำว่า You</span></p>
<div class="text_exposed_show" style="display: inline; color: rgb(20, 24, 35); font-family: Helvetica, Arial, 'lucida grande', tahoma, verdana, arial, sans-serif; font-size: 16px; line-height: 22.079999923706055px; background-color: rgb(255, 255, 255);">
<p style="margin: 0px 0px 6px; text-align: left;">
<span style="font-size:14px;"> 2. คุณไม่ได้สังเกตว่า ผมใส่คำว่า Yoo</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;"> 3.ตอนนี้คุณก็เริ่มที่จะหาละซิว่ามันจริงหรือเปล่า</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;"> 4. คุณขำและหัวเราะกับตัวเอง เพราะคุณเพิ่งจะรู้ตัว ว่า ถูกหลอก เพราะไม่มีคำว่า Yoo</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;"> 5.คุณก็เลยคิดจะส่งเรื่องนี้ให้กับคนที่เหมือนคุณ</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;"> ผมทราบดีว่า ขณะนี้ผมรู้เรื่องเกี่ยวกับคุณอย่างน้อย 13 อย่าง</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;"> 1.คุณกำลังใช้คอม หรือ ไอแพด หรือ ไอโฟน หรือ โทรศัพ หรือ แท็บแล็ต</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">2. คุณกำลังเล่นเด็กดี</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">3.คุณอยู่ในหน้าหลักของผม</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">4. คุณกำลังอ่านข้อความ</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">5. คุณเป็นมนุษย์</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">7.คุณไม่สามารถออกเสียง ตัวอักษร P โดยไม่แยกริมฝีปากคุณ</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">8.ตอนนี้คุณกำลังพยายามลองทำดู</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">9.คุณหัวเราะและขำกับตัวเอง</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">10.คุณมีรอยยิ้มบนใบหน้าคุณ</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">11.คุณไม่ได้อ่านข้อที่ 6</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">12.คุณก็เลยกลับไปเช็คว่ามีข้อ 6 หรือเปล่า</span></p>
<p style="margin: 6px 0px; text-align: left;">
<span style="font-size:14px;">13.คุณหัวเราะ เพราะคุณรู้ตัวว่า " ถูกหลอก "</span></p>
<p style="margin: 6px 0px; text-align: center;">
<span style="font-size:14px;">============================</span></p>
</div>
<div style="text-align: left;">
</div>
<div style="text-align: center;">
<span style="color:#ff0000;">ยินดีต้อนรับสู่ไอดีของผมครับ ผมชื่อ เทรน <br />
อายุ 17 ปี ม.5ปีนี้ครับแต่ไม่คิดจะอยู่นานเท่าไหร่เพราะ<br />
ปี้หน้าต้องขึ้น ม.6 เอาเป็นว่ายินดีที่ได้รู้จักทุกคนนะครับ<br />
#แอดแล้วทักนะครับไม่งั้นไม่รู้</span><br />
<br />
<span style="color:#000000;">==========================</span><br />
<br />
</div>
</div>
</center>
</div>
<div id="apDiv5">
<img height="226" src="http://image.dek-d.com/27/0257/0448/117177421" width="242" /></div>
<div id="apDiv6">
<img height="165" src="http://image.dek-d.com/27/0257/0448/117177419" width="218" /></div>
<div id="apDiv7">
<embed allowfullscreen="true" allowscriptaccess="always" height="98" src="http://www.youtube.com/v/8AzEFia1UEY?version=3&hl=en_US&rel=0&autoplay=1&loop=1&controls=0&playlist=jIb8ijZ8tPI" type="application/x-shockwave-flash" width="177"></embed></div>
<div id="apDiv8">
<blockquote>
<blockquote style="text-align: center;">
<span style="font-size:18px;"><span style="color:#000000;"> SONG</span></span><br />
</blockquote>
</blockquote>
</div>
<div id="apDiv9">
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p style="text-align: right;">
<span style="color:#000000;"><span style="font-size:24px;">TRAIN</span></span></p>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</div>
<div id="apDiv10">
<p>
<img alt="" height="95" src="http://image.dek-d.com/27/0257/0448/117177410" width="54" /></p>
<p>
<img alt="" height="115" src="http://image.dek-d.com/27/0257/0448/117177410" width="54" /></p>
</div>
<div id="apDiv11">
<p>
<br />
<a href="http://my.dek-d.com/thanitaja/qmsg/" style="color: rgb(0, 0, 0);" target="_blank">Q<br />
M<br />
S<br />
G</a></p>
<div id="apDiv12">
<a href="http://my.dek-d.com/thanitaja/friend/request_friend.php" onclick="window.open(this.href, '', 'resizable=yes,status=no,location=no,toolbar=no,menubar=no,fullscreen=no,scrollbars=no,dependent=no'); return false;"> <br />
<span style="color:#000000;">A<br />
D<br />
D<br />
M<br />
E</span></a></div>
</div>
<br />
เก็บเข้าคอลเล็กชัน
ความคิดเห็น