ลำดับตอนที่ #2
คืนค่าการตั้งค่าทั้งหมด
คุณแน่ใจว่าต้องการคืนค่าการตั้งค่าทั้งหมด ?
ลำดับตอนที่ #2 : Twinkling Star
25
HOURs.
<html>
<head><div style="position: absolute; top:0px; right: 0px; width:100%; border-radius:2px; position:fixed; padding:3px; background:#8CBFCF; color:#000000; font-size:11px;">
<div style="text-align: center;">
<b style="color: white;">Warning !</b> You have stepped onto <b style="color: white;">Twinkling star</b>.Follow me and leave a tag ณ<a href="http://www.blogger.com/follow-blog.g?blogID=YOUR BLOG ID" style="color: white;">Follow</a> ณ<a href="http://www.blogger.com/home" style="color: white;">Dashboard</a>ณ</div>
</div><title>Twinkling Star.</title><link rel="shortcut icon" href="http://4.bp.blogspot.com/-d9G5CdzQ1Nk/Tstiq5mbQ9I/AAAAAAAADtI/JIxyN-5TAOM/s1600/pic011demoji_15530476decoojp.gif" alt="emoticon06" title="emoticon06"><link href='http://i257.photobucket.com/albums/hh205/xoxojays/smilies/crayon/pic015demoji_8346430decoojp.gif" alt="emoticon06" title="emoticon06' rel='stylesheet' type='text/css'>
<style type="text/css">
#navbar-iframe {
display: none;
}
body {
background:url(http://i594.photobucket.com/albums/tt23/sara_chan1997/misorachan/880.jpg);
font-family: tahoma;
font-size:8pt;
letter-spacing:1px;
color:#000000;
background-attachment:fixed;
cursor: url(http://i.imgur.com/ZOrzC.png), auto;
}
a:link, a:visited {
color: #8CBFCF;
text-decoration:none;
}
a:hover {
color:#000000;
padding:0px;
border-bottom:1px dashed #8CBFCF;
cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;
}
.page {
background:#ffffff;
color:#000000;
padding:8px;
width:600px;
font-family: tahoma;
font-size:8pt;
letter-spacing:1px;
border-radius:10px;
text-align:left;
box-shadow:0px 0px 10px #7d95a8;
}
.title {
background:url('http://i1030.photobucket.com/albums/y365/lurunnia/silverstripes-3.png');
margin-bottom:2px;
font-style:bold;
text-align:left;
color:#000000;
font-family: tahoma;
font-size:8pt;
letter-spacing:1px;
font-size:14px;
padding:5px;
border-top:1px dashed #8CBFCF;
border-bottom:1px dashed #8CBFCF;
border-left:7px solid #8CBFCF;
border-right:7px solid #8CBFCF;
width:500px;
}
.title2 {
background:url('http://i1030.photobucket.com/albums/y365/lurunnia/silverstripes-3.png');
margin-bottom:2px;
font-style:normal;
text-align:center;
color:#000000;
font-family:tahoma;
letter-spacing:1px;
font-size:14px;
padding:5px;
border-top:1px dashed #8CBFCF;
border-bottom:1px dashed #8CBFCF;
border-left:4px solid #8CBFCF;
border-right:4px solid #8CBFCF;
width:210px;
}
.comment {
font-style:normal;
font-family: tahoma;
font-size:8pt;
margin-top:.5em;
margin-bottom:2em;
}
blockquote {
background-color: #FFFFFF;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 300ms;
-moz-border-radius: 0px;
border-radius: 0px;
border-top:3px solid #8CBFCF;
border-bottom:3px solid #8CBFCF;
padding: 7px;
color: #726D72;
}
blockquote:hover {
background-color: #FFFFFF;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 300ms;
-moz-border-radius: 0px;
border-radius: 0px;
border-top: 3px solid #FFFFFF;
border-bottom: 3px solid #FFFFFF;
padding: 7px;
color: #171717;
}
.sidebar {
padding:10px;
border-radius:10px;
background:white;
border:3px solid #8CBFCF;
}
li{
list-style-type : none;
background-image : url(http://www.wisconsinzcrew.com/forum/Themes/default/images/sp/dot1.png);
background-position : left;
background-repeat : no-repeat;
padding-left : 2.0em;
}
u {
text-decoration:none;
border-bottom:2px solid #8CBFCF;
color:#000000;
padding:2px;
}
.hallo {
text-align:center;
margin-top: 190px;
}
</style>
<script language="javascript" type="text/javascript">
/* toggle() checks to see if the images has already been faded
or not and sends the appropriate variables to opacity(); */
function toggle(el,milli) {
// Get the opacity style parameter from the image
var currOpacity = document.getElementById(el).style.opacity;
if(currOpacity != 0) { // if not faded
fade(el, milli, 100, 0);
} else { // else the images is already faded
fade(el, milli, 0, 100);
}
}
/* changeOpacity() uses three different opacity settings to
achieve a cross-browser opacity changing function. This
function can also be used to directly change the opacity
of an element. */
function changeOpacity(el,opacity) {
var image = document.getElementById(el);
// For Mozilla
image.style.MozOpacity = (opacity / 100);
// For IE
image.style.filter = "alpha(opacity=" + opacity + ")";
// For others
image.style.opacity = (opacity / 100);
}
/* fade() will fade the image in or out based on the starting
and ending opacity settings. The speed of the fade is
determined by the variable milli (total time of the fade
in milliseconds)*/
function fade(el,milli,start,end) {
var fadeTime = Math.round(milli/100);
var i = 0; // Fade Timer
// Fade in
if(start < end) {
for(j = start; j <= end; j++) {
// define the expression to be called in setTimeout()
var expr = "changeOpacity('" + el + "'," + j + ")";
var timeout = i * fadeTime;
// setTimeout will call 'expr' after 'timeout' milliseconds
setTimeout(expr,timeout);
i++;
}
}
// Fade out
else if(start > end) {
for(j = start; j >= end; j--) {
var expr = "changeOpacity('" + el + "'," + j + ")";
var timeout = i * fadeTime;
setTimeout(expr,timeout);
i++;
}
}
}
</script>
<div class="hallo" onClick="javascript:toggle('wise', 3000); this.style.display='none'; document.getElementById('june').style.display=''">
<img src="http://i1030.photobucket.com/albums/y365/lurunnia/f3-2.png"
style="opacity:0.4;filter:alpha(opacity=40)"
onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100"
onmouseout="this.style.opacity=0.7;this.filters.alpha.opacity=40"/>
</div>
<div id="wise" style="filter : alpha(opacity=0); -moz-opacity : 0; opacity : 0;">
<div id="june" style="display : none;">
<body oncontextmenu='return false;'><br><br>
<center><img border="0" src="http://i594.photobucket.com/albums/tt23/sara_chan1997/misorachan/h3-2.png" /><br></center>
<table style="font-size: 11px; color:#424242; line-height: 16px; background:transparent; border-radius:20px;" width="730" align="center" border="0" cellspacing="10">
<tbody><tr>
<td valign="top" style="line-height:15px; font-size:11px; width:240px; background:transparent; border-radius:10px;">
<center><a class="navi" onClick="document.getElementById('pages').innerHTML=document.getElementById('can').innerHTML" title="About"><img border="0" src="http://i594.photobucket.com/albums/tt23/sara_chan1997/misorachan/Untitled-15.png" /></a>
<a class="navi" onClick="document.getElementById('pages').innerHTML=document.getElementById('you').innerHTML" title="Archives"><img border="0" src="http://i594.photobucket.com/albums/tt23/sara_chan1997/misorachan/Untitled-15.png" /></a>
<a class="navi" onClick="document.getElementById('pages').innerHTML=document.getElementById('feel').innerHTML" title="Affiliates"><img border="0" src="http://i594.photobucket.com/albums/tt23/sara_chan1997/misorachan/Untitled-15.png" /></a>
<a class="navi" onClick="document.getElementById('pages').innerHTML=document.getElementById('it').innerHTML" title="Posts"><img border="0" src="http://i594.photobucket.com/albums/tt23/sara_chan1997/misorachan/Untitled-15.png" /></a></center><br>
<div class="sidebar">
<div class="title2">Little Disclaimer</div>
<center><img src="http://i128.photobucket.com/albums/p165/charmroyal/graphics/dividers/55.png"/></center>
<center><img src="http://i594.photobucket.com/albums/tt23/sara_chan1997/misorachan/Mason_Moon347.jpg"/></center>
<center>Hello there earthlings ! You have stepped onto Twinkling star. My name is Tralala. I'm the writer for this cute blog ! Do follow :) Thanks.<center>
<center><img src="http://i128.photobucket.com/albums/p165/charmroyal/graphics/dividers/56.png"/></center>
</div>
<br>
<div class="sidebar">
<div class="title2">Taggie Board</div>
Put your shoutmix here.Width :200px
<center><object width="200" height="25"><param name="movie" value="http://www.youtube.com/v/eFhbhyaUyPg?fs=1&hl=en_US&rel=0&color1=0xFFFFFF&color2=0xFFFFFF&autoplay=1&loop=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" />
<embed src="http://www.youtube.com/v/eFhbhyaUyPg?fs=1&hl=en_US&rel=0&color1=0xFFFFFF&color2=0xFFFFFF&autoplay=1&loop=1" type="application/x-shockwave-flash" width="200" height="25" allowscriptaccess="always" allowfullscreen="true"></embed></object></span></div></div><center>
</div>
<br>
<!---- DO NOT REMOVE THIS -----!>
<div class="sidebar">
<div class="title2">Credits</div>
<center><img src="http://i128.photobucket.com/albums/p165/charmroyal/graphics/dividers/55.png"/></center>
Template by : <a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a><br>
Re-edited by : <a href="http://misorachan.blogspot.com/">Sarah Yasmin</a><br>
Basecode : <a href="http://www.b-blueberry.co.cc/">Nazihah Anuar</a><br>
<center><img src="http://i128.photobucket.com/albums/p165/charmroyal/graphics/dividers/56.png"/></center>
</div>
<!---- DO NOT REMOVE THIS -----!>
</td>
<td valign="top" style="width:550px; padding:10px; border-radius:10px; border:3px solid #8CBFCF;background:#ffffff;">
<div id="pages">
<blogger><div class="title"><BlogItemTitle><$BlogItemTitle$></BlogItemTitle></div>
<div class="comment"><BlogDateHeader><$BlogDateHeaderDate$></BlogDateHeader> | <$BlogItemDateTime$> | <a href="<$BlogItemCommentCreate$>"<$BlogItemCommentFormOnClick$>><$BlogItemCommentCount$> star</a></BlogItemCommentsEnabled></div>
<$blogitembody$></blogger><br>
<center><OlderPosts><a href=<$OlderPosts$>>OLDER POST</a> </OlderPosts> <NewerPosts> | <a href=<$NewerPosts$>>NEWER POST</a></NewerPosts></center><br></td></div>
<div id="can" style="display:none;">
<div class="title">The Little Princess</div><br>
Hello there earthlings ! You have stepped onto Twinkling star. My name is Tralala. Imma sixteen years old girl.Proud to be Malaysian.Rate this theme if you like it.Replace this with your own profile or whatever.
<br><br>
<div class="title">Wishing Upon The Star</div>
<br>
Put your wishlist here or whatever things.
</div>
<div id="you" style="display:none;">
<div class="title">Past Memories</div><br>
<BloggerArchives>
<li><a href="<$BlogArchiveURL$>"><$BlogArchiveName$></a></li>
</BloggerArchives><br/>
</div>
<div id="feel" style="display:none;">
<div class="title">Affiliates</div><br>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
<li><a href="http://www.qwertyuiop.boboncet.co.cc/">Nurul Ain</a></li>
</div>
<div id="it" style="display:none;">
<blogger><div class="title"><BlogItemTitle><$BlogItemTitle$></BlogItemTitle></div>
<div class="comment"><BlogDateHeader><$BlogDateHeaderDate$></BlogDateHeader> | <$BlogItemDateTime$> | <a href="<$BlogItemCommentCreate$>"<$BlogItemCommentFormOnClick$>><$BlogItemCommentCount$> comments</a></BlogItemCommentsEnabled></div>
<$blogitembody$></blogger><br>
<center><OlderPosts><a href=<$OlderPosts$>>OLD</a> </OlderPosts> <NewerPosts> / <a href=<$NewerPosts$>>NEW</a></NewerPosts></center><br>
</div>
</body>
</head>
</html><style type="text/css">.external, #module_right, .modulebg1, .left, .headtable, #header, #footer, #head_module_desc, #module_right .modulebg2, #module_left .modulebg2,#neck, .hr2, #head_module_name, .head2, .hr1 { display: none!important;}
.right {background: none; border: 0px!important; border: none!Important; position: absolute; top: 0px; left: 0px;} .modulebg2 {background: none;} .mainborder {border:none!important;} </style>
.right {background: none; border: 0px!important; border: none!Important; position: absolute; top: 0px; left: 0px;} .modulebg2 {background: none;} .mainborder {border:none!important;} </style>
เก็บเข้าคอลเล็กชัน
ความคิดเห็น