jQuery effects (.effect)
HTML
<!-- jquery .effect slide - bounce - explode.
Om het te laten werken heb je Jquery UI nodig.
-->
<div></div>
CSS
div{
width:100px;
height: 100px;
border-radius: 100%;
background:red;
}
JavaScript
$(document).ready(function(){
$('div').click(function(){
$(this).effect('explode');
});
});