1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$(function () {

$('#box1').click(function () {
var $this = $(this);
$this
.css({
position: 'absolute',
top: $this.position().top,
left: $this.position().left
})
.animate({
opacity: 'hide',
width: $this.width() * 2,
height: $this.height() * 2,
top: $this.position().top - $this.height()/2,
left: $this.position().left - $this.width()/2
}, 3000)
})


});