...
|
...
|
@@ -68,4 +68,14 @@ ccHammer.on('tap', function(e) { |
|
|
$subLevel.not('.hide').addClass('hide');
|
|
|
$subLevel.eq(index).removeClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
$('.sub-level').bind('touchstart', function(e) {
|
|
|
var $cur = $(e.target);
|
|
|
$cur.addClass('a-highlight');
|
|
|
|
|
|
if ($curClickSubLevel) {
|
|
|
$curClickSubLevel.removeClass('a-highlight');
|
|
|
}
|
|
|
$curClickSubLevel = $cur;
|
|
|
}); |
|
|
\ No newline at end of file |
...
|
...
|
|