Authored by 梁志锋

浏览记录 删除按钮的效果

@@ -120,3 +120,9 @@ $page.on('touchstart', '.del-icon', function() { @@ -120,3 +120,9 @@ $page.on('touchstart', '.del-icon', function() {
120 }); 120 });
121 }); 121 });
122 }); 122 });
  123 +
  124 +$('.deps').on('touchstart', 'span', function() {
  125 + $(this).css('background', '#eee');
  126 +}).on('touchend touchcancel', 'span', function() {
  127 + $(this).css('background', 'transparent');
  128 +});