Berikut langkah-langkah membuat link bergoyang saat dilewati cursor mouse :
1. Log in ke Blogger
2. Klik Template
3. Klik Edit HTML
4. Lalu paste code berikut tepat di atas code </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>
5. Jika sudah selesai,Klik simpan Template, dan lihat hasilnya arahkan corsur mouse ke link dan linkpun akan beraksi dengan menampilkan goyangan mautnya..hehehe...!
SELESAI..!