Rabu, 07 Desember 2011

cara mengubah cursor di blog




mungkin Anda ingin merubah cursor pada blog sobat dengan cursor yang anda inginkan . Apakah sobat menginginkan sesuatu seperti itu????

jika sobat ingin, sini saya mungkin dapat memberikan tips untuk Merubah Cursor Pada Blog.

Bagaimana Merubah Cursor Pada Blog:
1. Login ke blogger dan memilih layout (tata letak)
2. Pilih EDIT HTML
3. Centang Expand widget template
4. Kemudian menempatkan kode html berikut di atas  </head>



 <style type='text/css'>body, a, a:link{cursor:url(http://cur.cursors-4u.net/cursors/cur-2/cur117.cur), default;} a:hover {cursor:url(http://cur.cursors-4u.net/cursors/cur-2/cur116.cur),wait;}</style>

ganti tulisan yang berwarna biru dan merah dengan url cursor sobat.

NB :
untuk yang berwarna biru adalah ketika cursor default
untuk yang berwarna merah adalah ketika cursor menyorot link

5. Simpan Template

Selasa, 06 Desember 2011

cara membuat efek kursor(bintang jatuh) pada blog

Cara Membuat Efek Bintang Berjatuhan Dari Cursor. yups kali ini akan share mengenai Cara Membuat Efek Bintang Berjatuhan Dari Cursor.

Cara ni sebenarnya cukup mudah kok karena sobat hanya tinggal memasukkan beberapa kode saja didalam template sobat.


Udah deh basa-basinya, heheheheh ok lah langsung saja pada pokok bahasan kita yaitu Cara Membuat Efek Bintang Berjatuhan Dari Cursor.

Mungkin efek ini sudah tidak asing lagi bagi kita, tapi kalau sobat-sobat pengen lebih mempercantik blog kita, mungkin tips ini patut unutk dicoba.

Ok langsung pada langkahnya :

1. login blog
2. Rancangan --> Edit HTML --> cari kode ]]></b:skin>

lalu copy kode dibawah ini dan taruh dibawah kode ]]></b:skin>

Untuk yang berwarna Merah

<script src='http://vikrymadz.googlecode.com/files/Red.js' type='text/javascript'/>
Untuk yang berwarna Biru

<script src='http://vikrymadz.googlecode.com/files/Blue.js' type='text/javascript'/>
3. simpan template

cara membuat efek kursor (bubble) pada blog

Cara Membuat Efek Bubble Pada Cursor di Blog, Yups... seperti postingan saya tentang cara membuat efek bintang berjatuhan dari kursor, Tapi kali ini tentang Efek Bubble atau bisa disebut dengan gelembung.



Efek ini secara otomatis akan muncul setelah sobat" menggerak"an kursor sobat. untuk contoh sobat bisa mencobanya pada kotak dibawah ini



Gimana sob???? bagus kan??

Ok deh buat sobat" yang dah kepengen ma ini tips, Langsung aja ke TKP. hehehehe
1.Login ke Blogger
2.Rancangan --> Elemen Laman --> klik Tambah Gadget --> HTML/Javascript
3.Lalu Copy dan Paste Kode Bubble Kursor Efek di bawah ini di kotak HTML/Javascript


var colours=new Array("#F781BE", "#F781BE", "#F781BE", "#F781BE", "#F781BE"); // colours for top, right, bottom and left borders and background of bubbles
var bubbles=100; // maximum number of bubbles on screen

var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var bubb=new Array();
var bubbx=new Array();
var bubby=new Array();
var bubbs=new Array();

window.onload=function() { if (document.getElementById) {
var rats, div;
for (var i=0; i<bubbles; i++) {
rats=createDiv("3px", "3px");
rats.style.visibility="hidden";

div=createDiv("auto", "auto");
rats.appendChild(div);
div=div.style;
div.top="1px";
div.left="0px";
div.bottom="1px";
div.right="0px";
div.borderLeft="1px solid "+colours[3];
div.borderRight="1px solid "+colours[1];

div=createDiv("auto", "auto");
rats.appendChild(div);
div=div.style;
div.top="0px";
div.left="1px";
div.right="1px";
div.bottom="0px"
div.borderTop="1px solid "+colours[0];
div.borderBottom="1px solid "+colours[2];

div=createDiv("auto", "auto");
rats.appendChild(div);
div=div.style;
div.left="1px";
div.right="1px";
div.bottom="1px";
div.top="1px";
div.backgroundColor=colours[4];
div.opacity=0.5;
if (document.all) div.filter="alpha(opacity=50)";

document.body.appendChild(rats);
bubb[i]=rats.style;
}
set_scroll();
set_width();
bubble();
}}


function bubble() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<bubbles; c++) if (!bubby[c]) {
bubb[c].left=(bubbx[c]=x)+"px";
bubb[c].top=(bubby[c]=y)+"px";
bubb[c].width="3px";
bubb[c].height="3px"
bubb[c].visibility="visible";
bubbs[c]=3;
break;
}
}
for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);
setTimeout("bubble()", 40);
}

function update_bubb(i) {
if (bubby[i]) {
bubby[i]-=bubbs[i]/2+i%2;
bubbx[i]+=(i%5-2)/5;
if (bubby[i]>sdown && bubbx[i]>0) {
if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {
bubb[i].width=bubbs[i]+"px";
bubb[i].height=bubbs[i]+"px";
}
bubb[i].top=bubby[i]+"px";
bubb[i].left=bubbx[i]+"px";
}
else {
bubb[i].visibility="hidden";
bubby[i]=0;
return;
}
}
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sleft;
x=(e)?e.pageX:event.x+sdown; }

window.onresize=set_width;
function set_width() {
if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (typeof(self.innerHeight)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
else {
swide=800;
shigh=600;
}
}
window.onscroll=set_scroll;
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;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height;
div.style.width=width;
div.style.overflow="hidden";
return (div);
}
// ]]>
</script>

NB :
  • Kode yang berwarna merah adalah warna Bubble silahkan sobat ganti dengan warna kesukaan sobat, untuk bantuan kode warna silahkan klik disini atau disini.
  • Kode yang berwarna biru adalah jumlah Bubble yang akan kita pasang. Sobat boleh menggantinya mau seberapa banyak Bubble yang akan di tampilkan

cara membuat efek meteor jatuh di blog


Cara Membuat Efek Meteor Jatuh.Yups.... kali ini akan share mengenai Cara Membuat Efek Meteor Jatuh.

 .Yaah sekedar menambah koleksi TIPS BLOGGING saya, jadi langsung saya disini deh.....

Cara Membuat Efek Meteor Jatuh

1. login blog
2. rancangan -> add widget (HTML/JavaScript)
3. lalu masukkan kode dibawah ini

<script language="javascript">
nd_mode="meteor";
nd_sound="on";
nd_vAlign="bottom";
nd_hAlign="right";
nd_vMargin="10";
nd_hMargin="10";
nd_target="_top";
</script>
<script language="javascript" src="http://cayunkatel.googlecode.com/files/meteorjaruh.js">
</script>
4. simpan....

Cara membuat efek kursor

Cara Membuat Efek-efek Cursor pada Blog. Yups setelah sekian lama gak posting akhirnya kali ini saya bisa share ke sobat-sobat mengenai Cara Membuat Efek-efek Cursor pada Blog.




ok langsung aja pada langkah-langkah Cara Membuat Efek-efek Cursor pada Blog.

Sebelumnya coba sobat arahkan cursor sobat pada text-text dibawah ini :





Hand

Crosshair

Text

wait

Move

Help


gimana ??? sobat pengen tahu cara membuatnya kan??? ok deh cara membuatnya cukup dengan kode berikut :
<span style="cursor :hand">Ketik Kalimat Sobat Disini</span>

NB :
  • ganti hand dengan kode diatas tadi (Crosshair,Text,wait,Move,Help)
  • lalu ganti  Ketik Kalimat Sobat Disini dengan tulisan sobat

10 POKEMON TERKUAT

10 POKEMON TERKUAT



RANK #10
GARCHOMP





analisa
type: DRAGON GROUND
Pokémon species: MACH Pokémon
Ability: Sand Veil
Height: 6'03"
Weight: 209.4 lbs.


pokemon dari daratan sinnoh (fouth generation pokemon)

perubahan terakhir dari gible

GIBLE => GABITE (lvl 24) => GARCHOMP (lvl 48)

National: #445 | Sinnoh: #111

pokedex inform : When it folds up its body and extends its wings, it looks like a jet plane. It flies at sonic speed.
__________________________________________________
garchomp's stats




RANK #9
CELEBI


analisa:
type: PSYCHIC GRASS
Pokémon species: TIME TRAVEL Pokémon
Ability: Natural Cure
Height: 2'00"
Weight: 11.0 lbs.

salah satu pokemon yang genderless

name etymology : Cele (as in celestial) + bi (as in by and by)

Second Generation (Gold/Silver/Crystal)
National: #251 | Johto: #251

pokedex inform : It has the power to travel across time, but it is said to appear only in peaceful times.
__________________________________________________ ________

celebi's status


RANK #8
HO OH




analisa:
type: FIRE FLYING
Pokémon species: RAINBOW Pokémon
Ability: Pressure
Height: 12'06"
Weight: 438.7 lbs.

name etyimology :ho-oh (japanese name for phoenix)
Second Generation (Gold/Silver/Crystal)
National: #250 | Johto: #248

poke dex inform :HO-OH's feathers glow in seven colors depending on the angle at which they are struck by light. These feathers are said to bring happiness to the bearers. This POKeMON is said to live at the foot of a rainbow.

__________________________________________________ ___________

HO-OH's stats


RANK #7
LUGIA



analisa:
type: PSYCHIC FLYING
Pokémon species: DIVING Pokémon
Ability: Pressure
Height: 17'01"
Weight: 476.2 lbs.

name etymology : Meaning guardian of the sea in Japanese.

Second Generation (Gold/Silver/Crystal)
National: #249 | Johto: #247

pokedex inform : LUGIA is so powerful even a light fluttering of its wings can blow apart houses. As a result, it chooses to live out of sight deep under the sea.
__________________________________________________ ____________

lugia's stats

RANK #6
LUCARIO


analisa:
type: FIGHTING STEEL
Pokémon species: AURA Pokémon
Ability: Steadfast or Inner Focus
Height: 3'11"
Weight: 119.0 lbs.

perubahan dari riolu (hanya dapat berubah jika dia loyal kepadamu)

Fourth Generation (Diamond/Pearl)
National: #448 | Sinnoh: #116

pokedex inform : By catching the aura emanating from others, it can read their thoughts and movements.
__________________________________________________ ___________

lucario's stats


RANK #5
SHAYMIN


analisa:
type: GRASS | GASS FLYING
Pokémon species: GRATITUDE Pokémon
Ability: Natural Cure | Serene Grace
Height: 0'08" | 1'04"
Weight: 4.6 lbs. | 11.5 lbs.

Fourth Generation (Diamond/Pearl)
National: #492

pokedex inform : It can dissolve toxins in the air to instantly transform ruined land into a lush field of flowers.

______________________________________________
shaymin's stats


RANK #4
RAYQUAZA



Dia adalah pemisah Rydon Dan Kyogre yang sudah lama berkelahi cuplikanya sangar gan !!!




analisa:
type: DRAGON FLYING
Pokémon species: SKY HIGH Pokémon
Ability: Air Lock
Height: 23'00"
Weight: 455.2 lbs.

name etymology : Ray + quazar

Third Generation (Ruby/Sapphire/Emerald)
National: #384 | Hoenn: #200

pokedex inform : RAYQUAZA is said to have lived for hundreds of millions of years in the earth's ozone layer, above the clouds. Its existence had been completely unknown because it lived so high in the sky.
__________________________________________________ ___________
rayquaza's stats


RANK #3
GIRATINA


analisa:
type: GHOST DRAGON
species: RENEGADE Pokémon
Ability: Pressure | Levitate
Height: 14'09" | 22'08"
Weight: 1653.5 lbs. | 1433.0 lbs.

Fourth Generation (Diamond/Pearl)
National: #487

pokedex inform : A POKeMON that is said to live in a world on the reverse side of ours. It appears in an ancient cemetery.


RANK #2
DARKRAI

for analisa:
type: DARK
Pokémon species: PITCH-BLACKPokémon
Ability: Bad Dreams
Height: 4'11"
Weight: 111.3 lbs.

name etymology : dark + rai (thunder in japanese language)

Fourth Generation (Diamond/Pearl)
National: #491

pokedex inform :Folklore has it that on moonless nights, this POKeMON will make people see horrific nightmares.
__________________________________________________ _________

darkrai's stats
RANK #1
ARCEUS



analisa:
type: NORMAL
Pokémon species: ALPHA Pokémon
Ability: Multitype
Height: 10'06"
Weight: 705.5 lbs.


Fourth Generation (Diamond/Pearl)
National: #493

pokedex inform : It is told in mythology that this POKeMON was born before the universe even existed.

tambahan info : ini pokemon juga disebut god of pokemon
__________________________________________________ _____

arceus stats

POKEMON

 Pokemon fosil

 
 

 
 




Pokemon Dewa