baner
- Home >
- Tutorial Blog >
- Cara membuat Link Bergoyang di blog
Posted by : andika
Senin, 18 Februari 2013
1.login ke blogmu
2.Dihalaman Dasbor,pilih template
3.edit HTML"cari </head>" dengan cara "CTRL+F"
4.taruh script yg ad dibawah,diatas </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>
Sekian para Bloggerc^_^
sumber