모바일 사이트 버튼눌림효과 주기

모바일/JAVAScript& jQuery 2011. 3. 4. 14:30


HTML :

<a class="btn">Touch button</a>

CSS :

.btn {
text-indent-9999px;
displayblock;
width200px/* 버튼 넓이 */
height50px/* 버튼 높이 */
backgroundtransparent url(img/button.png) no-repeat;
}
.btn:active {
backgroundtransparent url(img/button_press.png) no-repeat;
}


JS(jQuery) :

$(document).ready(function() {
   $('.btn').live('touchstart',function(event){
        $(this).addClass('active');
    });
    $('.btn').live('touchend',function(event){
        $(this).removeClass('active');
    });
});


 [출처] 모바일 사이트 버튼눌림효과 주기|작성자 리베하얀  

: