Showing
3 changed files
with
15 additions
and
2 deletions
framework @ 119c247f
@@ -68,4 +68,14 @@ ccHammer.on('tap', function(e) { | @@ -68,4 +68,14 @@ ccHammer.on('tap', function(e) { | ||
68 | $subLevel.not('.hide').addClass('hide'); | 68 | $subLevel.not('.hide').addClass('hide'); |
69 | $subLevel.eq(index).removeClass('hide'); | 69 | $subLevel.eq(index).removeClass('hide'); |
70 | } | 70 | } |
71 | +}); | ||
72 | + | ||
73 | +$('.sub-level').bind('touchstart', function(e) { | ||
74 | + var $cur = $(e.target); | ||
75 | + $cur.addClass('a-highlight'); | ||
76 | + | ||
77 | + if ($curClickSubLevel) { | ||
78 | + $curClickSubLevel.removeClass('a-highlight'); | ||
79 | + } | ||
80 | + $curClickSubLevel = $cur; | ||
71 | }); | 81 | }); |
@@ -99,7 +99,6 @@ | @@ -99,7 +99,6 @@ | ||
99 | background: #fff; | 99 | background: #fff; |
100 | width: 60%; | 100 | width: 60%; |
101 | height: 100%; | 101 | height: 100%; |
102 | - overflow: auto; | ||
103 | } | 102 | } |
104 | 103 | ||
105 | .sub-level { | 104 | .sub-level { |
@@ -126,4 +125,8 @@ | @@ -126,4 +125,8 @@ | ||
126 | color: #000; | 125 | color: #000; |
127 | } | 126 | } |
128 | } | 127 | } |
128 | + | ||
129 | + .a-highlight { | ||
130 | + text-decoration: underline; | ||
131 | + } | ||
129 | } | 132 | } |
-
Please register or login to post a comment