제이쿼리로 이미지 회전 시키기 정보
jQuery 제이쿼리로 이미지 회전 시키기본문
$("#img").rotate({
bind:
{
mouseover : function() {
$(this).rotate({animateTo:180})
},
mouseout : function() {
$(this).rotate({animateTo:0})
}
}
});
이미지를 회전 시키는 소스에요.
추천
0
0
댓글 0개