Cara Membuat Link Bila Tersentuh Cursor bergoyang
Cara Membuat Link Bila Tersentuh Cursor bergoyang mudah saja ikuti langkah-langkah berikut :
1. cari kode Head supaya mudah pencarian </head> (tekan F3).
2. fastekan kede di bawah ini tepat di atas 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>
3. save template lalu coba sentuh. goyang deh..
Selamat mencobaaa....