 
						简要教程
表格式网页设计中的一个重要元素,它们能够让用户直观的了解某些数据。在这个demo中使用的表格不是标准的表格html结构,而是使用无序列表来制作表格。这样做的目的是为了使表格具有很好的相应性。
HTML结构
我们使用一个section来作为表格结构。header 中包含的是表格的第一列,没有将header和其它列放在同一个div中的原因是:在手机上header是fixed的。它的父元素将决定它在section中的位置。
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <section>  <header>    <h2>Features</h2>    <ul>      <li>Feature 1</li>      <li>Feature 2</li>      <li>...</li>    </ul>  </header>    <divclass="cd-table-container">    <divclass="cd-table-wrapper">        <divclass="cd-table-column">        <h2>Plan 1</h2>        <ul>          <li>1 GB</li>          <li>2</li>          <li>...</li>        </ul>      </div> <!-- cd-table-column -->        <divclass="cd-table-column">        <h2>Plan 2</h2>        <ul>          <li>2 GB</li>          <li>5</li>          <li>...</li>        </ul>      </div> <!-- cd-table-column -->      </div> <!-- cd-table-wrapper -->  </div> <!-- cd-table-container --></section> | 
CSS样式
CSS文件中有一点要指出的是:我们使用2个div来包裹表格列(.cd-table-container 和 .cd-table-wrapper )。为什么需要两个div呢?因为第一个div这里设置它的宽度为90%和一个overflow-x:auto。第二个div的宽度是整个表格的宽度。通过这种方法,我们能让屏幕右边有一些margin,从而在表格宽度大于90%时让表格内容滚动起来。
JAVASCRIPT
在demo中仅使用jQuery来在小屏幕设备上去掉表格右边的小箭头。
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | jQuery(document).ready(function($){  var$columns_number = $('#cd-table .cd-table-container').find('.cd-table-column').length;     $('.cd-table-container').on('scroll', function(){     $this= $(this);    //hide the arrow on scrolling    if( $this.scrollLeft() > 0 ) {      $('.cd-scroll-right').hide();    }    //remove color gradient when table has scrolled to the end    vartotal_table_width = parseInt($('.cd-table-wrapper').css('width').replace('px', '')),      table_viewport = parseInt($('#cd-table').css('width').replace('px', ''));           if( $this.scrollLeft() >= total_table_width - table_viewport - $columns_number) {      $('#cd-table').addClass('table-end');    } else{      $('#cd-table').removeClass('table-end');    }  });   //scroll the table (scroll value equal to column width) when clicking on the .cd-scroll-right arrow  $('.cd-scroll-right').on('click', function(){    $this= $(this);    varcolumn_width = $(this).siblings('.cd-table-container').find('.cd-table-column').eq(0).css('width').replace('px', ''),      new_left_scroll = parseInt($('.cd-table-container').scrollLeft()) + parseInt(column_width);         $('.cd-table-container').animate( {scrollLeft: new_left_scroll}, 200 );    $this.hide();  });}); | 
特别申明:
			本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
			本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
			如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com