ลำดับตอนที่ #14
คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
ลำดับตอนที่ #14 : Tokyo goul
:)
Shalunla
<style name="captain" type="text/css">
img { filter: alpha
(opacity=100); opacity:1.0;}img:hover { filter: alpha(opacity=70);
opacity:.7 } img {-webkit-transition:0.7s; -moz-transition:0.7s;
-o-transition:0.7s;}</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">
body {
background-color: #FFC4C4;
background-image: url(...);
}
#apDiv1 {
position:fixed;
width:200px;
height:115px;
z-index:1;
left: -16px;
top: 144px;
}
#apDiv2 {
position:fixed;
width:502px;
height:562px;
z-index:2;
left: 413px;
top: 29px;
background-color: #FF2D2D;
}
#apDiv3 {
position:fixed;
width:445px;
height:586px;
z-index:3;
left: -9px;
top: 84px;
}
#apDiv4 {
position:fixed;
width:502px;
height:53px;
z-index:4;
left: 414px;
top: 607px;
}</style>
<script type="text/javascript">
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
</script>
<style type="text/css">
A { color: #fffff; text-decoration: none; }</style>
<style type="text/css">
A:hover { font-variant: small-caps; font-size:18px; font-weight:bold;}</style>
<style id="catsky" type="text/css">
a:hover{
color: /*สีลิงค์เวลาชี้ แนะนำว่าเป็นสีขาวจะแจ่มที่สุด*/;text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px /*สีพื้นหลังที่เรืองแสง ในตย.เป็นสีชมพู เปลี่ยนให้ครบ 5 ช่องเหมือนกันเน้อ*/, 0 0 30px #ff2d95, 0 0 40px #ff2d95, 0 0 50px #ff2d95, 0 0 75px #ff2d95;
}</style>
<style type="text/css">
.right {
background: none;
}</style>
<div style="text-align: center;">
<style type="text/css">
/* เริ่มโค้ดลบทุกอย่างออกไปเหลือแต่ what's up เท่านั้น */
.headtable, .head2, .modulebg1,
#footer, #header, #neck, .left,
#module_left .modulebg2, #module_right .modulebg2,
.hr1, .hr2, .borderlinks
{ display: none !important; }
.mainborder
{ border: 0px !important; }
/* จบโค้ดลบทุกอย่างออกไปเหลือแต่ what's up เท่านั้น
http://writer.dek-d.com/Caje/writer/viewlongc.php?id=499460&chapter=93
*/ </style>
</div>
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type" />
<title></title>
<style type="text/css">
body {
background-image: url(http://khalovers.wapgem.com/bnr/bg2.gif);
}
#Layer1 {
position:absolute;
left:340px;
top:89px;
width:810px;
height:654px;
z-index:1;
background-color: #151515;
}
#Layer2 {
position:absolute;
left:361px;
top:110px;
width:440px;
height:265px;
z-index:2;
background-color: #000000;
}
#Layer3 {
position:fixed;
left:-15px;
top:153px;
width:320px;
height:361px;
z-index:3;
}
#Layer4 {
position:fixed;
left:30px;
top:11px;
width:287px;
height:70px;
z-index:4;
}
#Layer5 {
position:absolute;
left:396px;
top:391px;
width:797px;
height:303px;
z-index:5;
background-color: #333333;
}
#Layer6 {
position:absolute;
left:826px;
top:110px;
width:303px;
height:262px;
z-index:5;
background-color: #000000;
}
#Layer7 {
position:absolute;
left:374px;
top:102px;
width:402px;
height:228px;
z-index:6;
}
#Layer8 {
position:absolute;
left:354px;
top:391px;
width:789px;
height:316px;
z-index:7;
}
.style1 {color: #FFFFFF}
#Layer9 {
position:absolute;
left:843px;
top:129px;
width:267px;
height:225px;
z-index:8;
}</style>
<div id="Layer1">
</div>
<div id="Layer2">
</div>
<div id="Layer3">
<img height="561" src="http://img1.wikia.nocookie.net/__cb20140601194431/tokyoghoul/images/0/0e/Kaneki.png" width="330" /></div>
<div class="style1" id="Layer4">
<p>
<span style="font-family:courier new;"><span style="font-size: 14px;"><span style="color:#ffffff;"> </span><span style="font-size:18px;"><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;"><span style="color: rgb(255, 255, 255);">+ADD</span></a><span style="color: rgb(255, 255, 255);"> </span><a href="http://my.dek-d.com/thanitaja/qmsg/" target="_blank"><span style="color: rgb(255, 255, 255);">+QMSG</span></a></span></span></span></p>
</div>
<div id="Layer6">
</div>
<div id="Layer7">
<div align="center">
<p>
<embed allowfullscreen="true" allowscriptaccess="always" height="249" src="http://www.youtube.com/v/t8pJpzZSRmY?version=3&hl=en_US&rel=0&autoplay=1&loop=1&controls=0&playlist=lIBhCwPf1wE" type="application/x-shockwave-flash" width="388"></embed></p>
</div>
</div>
<div id="Layer8">
<br />
<span style="color: rgb(255, 255, 255);"><span style="font-size: 18px;"><u>TALK </u></span></span><br />
<br />
<br />
<span style="font-family: 'comic sans ms';"><font size="4"> <span style="color:#808080;"> </span></font><span style="color:#808080;"><span style="font-size: 14px;">สวัสดีครับ ผมชื่อ เทรน อายุ 17 ปี กลับมาประจำตำแหน่งแล้วนะเออ หลายๆคนที่รู้จักผมแล้วทุกคนคงรู้ว่าผมไม่ชอบพวกข้ามเม้น<br />
นะครับ แต่สำหรับคนไม่รู้ผมก็บอกดักไว้ก่อนเลย เวลาผมลบจะได้ไม่ต้องรู้สึกผิด อ่อ! ผมเป็นพวกสองบุคลิกนะครับ สำหรับคนที่เจอด้าน<br />
ดีๆของผมก็ดีไปแต่สำหรับคนที่เจอด้านไม่ดีของ ผมเข้าไปแล้วรับไม่ได้ 'ก็เรื่องของคุณเถอะครับ ^^' <br />
</span><br />
<br />
</span></span><span style="color:#808080;"><span style="font-size:18px;"> PS. ผมเป็นมิตรกับทุกคนครับ :)</span></span><br />
<br />
<span style="font-family: 'comic sans ms';"> <br />
<br />
<span style="color:#ffffff;"> <u> </u></span></span></div>
<div class="style1" id="Layer9">
<u><span style="font-size:18px;"> RULE</span></u><br />
<br />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">1. ผมกวนประสาท </span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">2. ผมปากจัดกว่าผู้หญิงอีกนะ</span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">3. ผมหยิ่ง</span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">4. ผมเกลียดเด็ก</span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">5. ผมเกลียดพวกพูดไม่รู้เรื่อง หรือก็ มึนนั้นล่ะ</span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">6. ผมเป็นคนพูดเสียงเบา(มาก) </span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">7. ผมไม่ชอบเล่นดนตรีสุดๆ</span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">8. ผมไม่ชอบการผูกมัด</span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">9. ผมไม่ชอบให้ใครมาเอาเปรียบ และไม่ชอบเอาเปรียบคนอื่น</span><br style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);" />
<span style="color: rgb(181, 178, 178); font-size: 13px; background-color: rgb(0, 0, 0);">10.ผมเกลียดพวกเห็นแก่ตัว<br />
<u> </u></span></div>
<div class="style1">
</div>
เก็บเข้าคอลเล็กชัน
ความคิดเห็น