我要尽情享受人生
Officially design by Cici 2011 . I wont be crediting anyone :)
Instagram
|
Snow Ball Effect 雪球掉落
要Christmas了哦 :PP 也让你的部落格做热闹吧 哈哈 Christmas coming :PP Let your blog snow~~  就是这个了 :)) 会下雪 xD ↑This snow im talking about :) 去设计 页面元素 添加小工具 HTML/JAVASCRIPT Design Add Gadget Html/JavaScript
Paste the code below :) 把以下代码拷贝进去 :)
<script> | | | | //Here you can add your own picture for snow. Just change the url | | var snowsrc="style="color: red;">https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnLTqOyEKMC-fpNa5Ed2XLYc0awXTLSDzNwo7MxG4jKNYs4uuAryePCnz4_5CiOkpM4z7c393t9kUPSzk2BKHrUn4x-4eEgfh3aias4oG_R_FzxCP8w2DcvxhKA_ZPGv8ctvMEAEo2kXg/s1600/whiteshowNF.png" | | //how many snowflakes there will be (currently 12) | | var no =40; | | //How fast will the snow disappear (0 is never) | | var hidesnowtime = 0; | | //The height the snow will reach before it disappears ("windowheight" or "pageheight") | | var snowdistance = "pageheight"; | | ///////////////////////////////End of Settings/////////////////////////////////// | | var ie4up = (document.all) ? 1 : 0; | | var ns6up = (document.getElementById&&!document.all) ? 1 : 0; | | | | function iecompattest() | | { | | return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body | | } | | | | var dx, xp, yp; | | var am, stx, sty; | | var i, doc_width = 800, doc_height = 600; | | | | if (ns6up) | | { | | doc_width = self.innerWidth; | | doc_height = self.innerHeight; | | } | | else | | if (ie4up) | | { | | doc_width = document.body.clientWidth; | | doc_height = document.body.clientHeight; | | } | | | | dx = new Array(); | | xp = new Array(); | | yp = new Array(); | | am = new Array(); | | stx = new Array(); | | sty = new Array(); | | | | for (i = 0; i < no; ++ i) | | { | | dx[i] = 0; | | xp[i] = Math.random()*(doc_width-50); | | yp[i] = Math.random()*doc_height; | | am[i] = Math.random()*20; | | stx[i] = 0.02 + Math.random()/10; | | sty[i] = 0.7 + Math.random(); | | if (ie4up||ns6up) | | { | | if (i == 0) | | { | | document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://rftactical.darkbb.com/index.htm\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>"); | | } | | else | | { | | document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>"); | | } | | } | | } | | | | function snowIE_NS6() | | { | | doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10; | | doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")? iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight; | | for (i = 0; i < no; ++ i) | | { | | yp[i] += sty[i]; | | if (yp[i] > doc_height-50) | | { | | xp[i] = Math.random()*(doc_width-am[i]-30); | | yp[i] = 0; | | stx[i] = 0.02 + Math.random()/10; | | sty[i] = 0.7 + Math.random(); | | } | | dx[i] += stx[i]; | | document.getElementById("dot"+i).style.top=yp[i]+"px"; | | document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px"; | | } | | snowtimer=setTimeout("snowIE_NS6()", 10); | | } | | | | function hidesnow() | | { | | if (window.snowtimer) clearTimeout(snowtimer) | | for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden" | | } | | | | | | if (ie4up||ns6up) | | { | | snowIE_NS6(); | | if (hidesnowtime>0) | | setTimeout("hidesnow()", hidesnowtime*1000) | | } | | </script> |
Last save :DD how easy peasy?:3 保存~完成了~~(≧▽≦) 简单不??

|
Snow Ball Effect 雪球掉落
要Christmas了哦 :PP 也让你的部落格做热闹吧 哈哈 Christmas coming :PP Let your blog snow~~  就是这个了 :)) 会下雪 xD ↑This snow im talking about :) 去设计 页面元素 添加小工具 HTML/JAVASCRIPT Design Add Gadget Html/JavaScript
Paste the code below :) 把以下代码拷贝进去 :)
<script> | | | | //Here you can add your own picture for snow. Just change the url | | var snowsrc="style="color: red;">https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnLTqOyEKMC-fpNa5Ed2XLYc0awXTLSDzNwo7MxG4jKNYs4uuAryePCnz4_5CiOkpM4z7c393t9kUPSzk2BKHrUn4x-4eEgfh3aias4oG_R_FzxCP8w2DcvxhKA_ZPGv8ctvMEAEo2kXg/s1600/whiteshowNF.png" | | //how many snowflakes there will be (currently 12) | | var no =40; | | //How fast will the snow disappear (0 is never) | | var hidesnowtime = 0; | | //The height the snow will reach before it disappears ("windowheight" or "pageheight") | | var snowdistance = "pageheight"; | | ///////////////////////////////End of Settings/////////////////////////////////// | | var ie4up = (document.all) ? 1 : 0; | | var ns6up = (document.getElementById&&!document.all) ? 1 : 0; | | | | function iecompattest() | | { | | return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body | | } | | | | var dx, xp, yp; | | var am, stx, sty; | | var i, doc_width = 800, doc_height = 600; | | | | if (ns6up) | | { | | doc_width = self.innerWidth; | | doc_height = self.innerHeight; | | } | | else | | if (ie4up) | | { | | doc_width = document.body.clientWidth; | | doc_height = document.body.clientHeight; | | } | | | | dx = new Array(); | | xp = new Array(); | | yp = new Array(); | | am = new Array(); | | stx = new Array(); | | sty = new Array(); | | | | for (i = 0; i < no; ++ i) | | { | | dx[i] = 0; | | xp[i] = Math.random()*(doc_width-50); | | yp[i] = Math.random()*doc_height; | | am[i] = Math.random()*20; | | stx[i] = 0.02 + Math.random()/10; | | sty[i] = 0.7 + Math.random(); | | if (ie4up||ns6up) | | { | | if (i == 0) | | { | | document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://rftactical.darkbb.com/index.htm\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>"); | | } | | else | | { | | document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>"); | | } | | } | | } | | | | function snowIE_NS6() | | { | | doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10; | | doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")? iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight; | | for (i = 0; i < no; ++ i) | | { | | yp[i] += sty[i]; | | if (yp[i] > doc_height-50) | | { | | xp[i] = Math.random()*(doc_width-am[i]-30); | | yp[i] = 0; | | stx[i] = 0.02 + Math.random()/10; | | sty[i] = 0.7 + Math.random(); | | } | | dx[i] += stx[i]; | | document.getElementById("dot"+i).style.top=yp[i]+"px"; | | document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px"; | | } | | snowtimer=setTimeout("snowIE_NS6()", 10); | | } | | | | function hidesnow() | | { | | if (window.snowtimer) clearTimeout(snowtimer) | | for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden" | | } | | | | | | if (ie4up||ns6up) | | { | | snowIE_NS6(); | | if (hidesnowtime>0) | | setTimeout("hidesnow()", hidesnowtime*1000) | | } | | </script> |
Last save :DD how easy peasy?:3 保存~完成了~~(≧▽≦) 简单不??

|
A little about me

现在的我过得很好,不错
在家当宅女,过着累人的学校生活的高中生 :)
● Cici, 玛丽
● Im sweet 17 :D
● I was born at 9 Februarry!Yeahh Im an Aquaries
● Single but not available xPP
● I talk alot
● I hyper active
● Hope to have experience on everything
● Everyday hoping that life not tough
Fact about me :#
● DOTA2 SDO GAMING!!well I do reading too =P
● Hanging out with my brothers and sisters
● Love my sistars ,MY family,My buddies,MY DOGGIE
● Love designing,Facebooking,Blogging,Chating,Megazine
● LOVE FOOD
● Love animals
● HATE babbling
● Wanted to learn more cooking , and make up and more
Other connector?
Wechat" cici-bii97
Twitter" malisssa___
|
Cute Darlinks
INBOX OR TAGBOARD TO EXCHANGE LINK :)
|
Some Past Tense
Leave A message at *Click me* for any question
指向link时出现变化的彩虹颜色Raibowlink
Moving tittle移动的部落格标题
藕のSDO 照照
❤文字移动教学+素材
教程Tutorial
Back to top
移除Navbar
Name tittle :D
访客计时器
添加Dashboard & Follow
Question
Who made your layout? -I designed my own layout.
Where'd you get your cursor? -I create my own cursor.
Could you please do a cursor or banner or something for me? -Yes,If Iam Free .
Can design my blog? -Sorry ,cant .
Please follow me? -Yes,but please leave ur blog link .
Link exchange? -Sure =)
What program do you use to edit pics? -Photoshop Cs6.
Can teach me use photoshop? -Sorry close friends only.
Wishlist
Travel to Korea
Travel to Taiwan,Taipei
Travel to anywhere with my sister/buddies
Longer hair
Short hair
Golden Blone hair xD
Trip to damai with my sister
Get all A's in PMR! ----FAILLLL HAHA T-T
Have Semi Science
Having teeth braces
Having ps5
Learn almost everything ?xD
New phone
Very close picture with tiger ,lion ? XD
Take 1000 picture memory with buddies ,sisters
Touch a SNAKE!Huge one
Having my own cartoon
nicer bedroom
Attending my sohai sister wedding xDD
|
所有教程与素材都亲手整理并发布。
一部分非自制 侵版权请务必通知。
若发现有小白盗取自制素材后果不美哦,
If you take mine、leave comment and give me credit.
这些教程都是btemplate和bskin的教程
btemplate/bskin的会注明
希望大家会找的合意的教程和素材。
By Cici
Freebies |
Tutorial教程
|