H5移动端端按钮添加按下效果

1、样式   #keyboard li.active {  background-color: #e3e3e3;  }

2. js控制 

$('#keyboard li').on("touchstart", function () {

$(this).addClass("active");

})

$('#keyboard li').on("touchend", function () {

$(this).removeClass("active");

})




H5移动端端按钮添加按下效果_第1张图片

你可能感兴趣的:(H5移动端端按钮添加按下效果)