Posted by Tegar Herlambang
Thursday, January 30, 2014
Langkah-langkah Membuat Link Bergerak :
1. Login ke Blog anda
2. Klik Template
3. Kemudian, klik Edit HTML
4. Centang kotak kecil di pojok kiri atas
5. lalu cari kode </head> supaya mudah ctrl+f (ketik </head>)
6. Copy kode di bawah ini, dan letakkan diatas kode </head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function() {
$('a').hover(function() { //mouse in
$(this).animate({ marginLeft: '12px' }, 400);
}, function() { //mouse out
$(this).animate({ marginLeft: 0 }, 400);
});
});</script>
7. Kemudian Simpan Template, jika ragu pratinjau terlebih dahulu sebelum menutup halaman EDIT html.