Membuka Blog sambil liat aktivitas twitter kita lewat blog , emang ada wigdet blog semacam itu ?
ini ada Twitter Update , fungsinya bisa liat tweet yang kita post dan direct langsung ke akun twitter kita , dan para pembaca yang mau memfollow anda pasti bisa langsung direct ke akun twitter anda , tanpa panjang ini scriptnya :
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 8, //jumlah status terakhir yang ditampilkan
interval: 6000,
width: 200, //lebar widget
height: 150, //tinggi widget
theme: {
shell: {
background: '#0066ff', //warna background profil
color: '#030303' //warna teks profil
},
tweets: {
background: '#0099ff', //warna background status
color: '#060606', //warna teks status
links: '#ff0000' //warna link
}
},
features: {
scrollbar: true,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: true,
behavior: 'all'
}
}).render().setUser('frozenkevin').start();
</script>
from <a href="http://frozenneriskevin.blogspot.com/" target="_blank">FROZENBLOG</a>
Lebar : atur besar lebarnya
Tinggi : atur besar tingginya
jumlah status : berapa banyak tweet yang tampil
*untuk penggunaan warna , ganti kode diatas dengan kode warna lain, cari digoogle ada :)
User frozenkevin ganti dengan user anda , selesai dah :D
Related Posts :
- Back to Home »
- widget »
- Cara Membuat Twitter Update Pada Blog kita ( Javascript )

