Commit bab8877f4414d256cdae2f624180d8bcb253b540

Authored by ykxie
1 parent 55f5b68c

add dist

dist/css/mobile.css
... ... @@ -86,4 +86,8 @@
86 86 .player_volume_wrapper {
87 87 display: none; }
88 88 .full {
89   - display: none; } }
  89 + display: none; }
  90 + .tab-content > .tab-pane {
  91 + padding-bottom: 64px; }
  92 + .CodeMirror-scroll {
  93 + overflow: auto !important; } }
... ...
dist/js/player.js
... ... @@ -38,8 +38,9 @@ $(function(){
38 38 CodingEditer.editable(0)
39 39 })
40 40  
41   - $('.m-menu').on('click', function(){
42   - // alert("status--------" + status)
  41 +
  42 + $('.m-menu').on('click', function(e){
  43 + // e.preventDefault();
43 44 if (status) {
44 45 $('.m-dir-wrap').show();
45 46 status = false;
... ...
dist/player.html
... ... @@ -208,7 +208,6 @@
208 208 }
209 209 .comprun{
210 210 position: relative;
211   - bottom: -40px;
212 211 padding: 0;
213 212 height: 56px;
214 213 width: 56px;
... ... @@ -218,7 +217,7 @@
218 217 background-image: linear-gradient(to right, #1FB6FF 0%, #62DCF5 100%);
219 218 }
220 219 .toolbar .btn{
221   - padding: 3px 14px;
  220 + padding: 3px 0;
222 221 }
223 222 .toolbar #comprunbtngrp {
224 223 margin-right: 14px;
... ... @@ -232,6 +231,15 @@
232 231 .player_volume_wrapper{
233 232 display: none !important;
234 233 }
  234 +
  235 + .tab-content>.tab-pane {
  236 + padding-bottom: 64px;
  237 + }
  238 +
  239 + .CodeMirror-scroll{
  240 + overflow: auto !important;
  241 + }
  242 +
235 243 }
236 244  
237 245 </style>
... ...
dist/scss/mobile.scss
... ... @@ -123,6 +123,13 @@
123 123 .full{
124 124 display: none
125 125 }
  126 +
  127 + .tab-content>.tab-pane {
  128 + padding-bottom: 64px;
  129 + }
  130 + .CodeMirror-scroll{
  131 + overflow: auto !important;
  132 + }
126 133 }
127 134  
128 135  
... ...
dist/v1.1/player.html
... ... @@ -58,7 +58,7 @@
58 58 </ul>
59 59 </div>
60 60 <div class="m-title-wrap">
61   - <div class="m-title"></div>
  61 + <div class="m-title">章节名称</div>
62 62 <div class="m-menu">目录 <img src="../img/down.png" alt=""></div>
63 63 </div>
64 64 <!-- 录制区 -->
... ...