Bootstrap增加整体页面大小

时间:2015-06-18 11:38:44

标签: html css twitter-bootstrap

我的报告使用基本2000-2500 rows加载HTML table,使用大约5-10秒,内容大小约为5MB [根据Chrome网络统计信息]。

现在,当我使用bootstrap classes实现相同的报告时,它看起来不错,加载相同的报告需要大约25-30秒,内容大小约为25MB。 我用谷歌搜索并找到了相同的原因,并实现了所有这些,如gzip压缩,minified cssjs。仍然加载时间保持不变我的报告中没有使用的图像只是表格中的文字

<!--Old HTML--> 
<div>
  <table>
      <tr>...nested tables & html simple buttons with no classes</tr>  
  </table>
</div>

<!--NEW HTML :-->
<div class="row">
    <div class="col-lg-n">
       <table class="table table-condensed table-hover mytable">
              nested tables + bootstrap button 
       </table>
    </div>
</div>

任何帮助将不胜感激。

0 个答案:

没有答案