Jumat, 15 April 2011

How to Make Falling Heart for Blogspot

Hello bloggers :) After my posting about "How to Make Falling Snow Effect for Blogspot" (you can find here) Now I'd like to post a similar effect.. Falling Heart Effect.. It's very easy to try this effect :)
1. Make sure you login on Blogspot
2. Click on Design and click Edit HTML ( It'd be better if you make a back up of your HTML)
3. Find the word </body> to make it easier just type Ctrl F and fill the box with </body>
4. Copy this code

<script src='http://sites.google.com/site/anasku2000/lovingheart.js'>
</script>

5. Paste this code below </body>
6. Click Save
Now you can see your Blog has been full of love :)
  • "Comment" if you have question and "Follow" to get more information..

Selasa, 22 Februari 2011

How to Make Energy Saving Mode for Blogger

Now I'll tell you how to make energy saving mode on blogspot. It's really easy.
1. Make sure you login on Blogspot
2. Click on Design and click Edit HTML ( It'd be better if you make a back up of your HTML)
3. Find the word <head> to make it easier just type Ctrl F and fill the box with <head>
4. Copy this code


 <!-- save your energy -->
<script language='javascript' src='http://www.onlineleaf.com/savetheenvironment.js' type='text/javascript'/>
<!-- save your energy end --> 
5. Paste this code above <head>
6. Click Save
7. Enjoy your energy saving mode :)
  • "Comment" if you have question and "Follow" to get more information

How to Make Falling Snow Effect to Blogspot

So bloggers, do you like snow? Yes you can find snow in your blog. This is the way how to get snow effect to your blog.

1. Make sure you're online on Blogspot
2. Click on Design and click Edit HTML
3. Find the word </head> or to make it easy just press Ctrl F on your keyboard, then fill that word on the box
5. Then copy this code

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js' type='text/javascript'/>
<script src='http://nirav07.110mb.com/jsnow.js' type='text/javascript'/>
  <script type='text/javascript'>
$(function() {
$().jSnow();
});
</script>

6. Paste this code below the word </head>
7. And click Save
8. Enjoy the snow :)
  • Sorry for my bad English, and please make correction for me :)
  • If you have question, just comment me, I'll reply ASAP
  • Don't forget to click "Follow"

Senin, 21 Februari 2011

How to Make Falling Star Cursor for Blogger

This is the way how to make Falling Star Cursor like i have :) It's very easy to do.


1. Make sure that you login on Blogspot
2. Click on Design
3. There you see Page Elements, click on Add a Gadget
4. Then choose HTML/JavaScript
5. And now copy and paste the code below




<script type='text/javascript'>
// <![CDATA[
var colour="violet";
var sparkles=100;

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]=5;
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].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) {
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";
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) {
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() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
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";
div.style.backgroundColor=colour;
return (div);
}
// ]]></script>

6.  Do you see that code "violet" ? Yes you can change the colour like blue, red, black. It'll effect your stars colour
7. Then click Save
8. Here you go, you can enjoy falling star cursor on your blog :)
  • So sorry for my bad english, I'd be happy if you can make correction
  • Don't forget to click on "Follow" to get more information and "Comment" if you have a question