list_case.htm 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {dede:include filename="head_list.htm"/}
  2. <body class="index_sem">
  3. {dede:include filename="nav_inside.htm"/}
  4. <section class="main main_case fixed mb20">
  5. <section class="main_t simple_t">
  6. {dede:include filename="simple_t.htm"/}
  7. </section><!-- main_t end -->
  8. <section class="clearfix mt20">
  9. <section class="inside_case_t">
  10. {dede:channel typeid='4' type='son' currentstyle="<a href='~typelink~' class='case_curr'>~typename~</a>"}
  11. <a href='[field:typeurl/]' title="[field:typename/]">[field:typename/]</a>
  12. {/dede:channel}
  13. <span >联系电话:400-999-8103</span>
  14. </section><!-- inside_case_t end -->
  15. </section><!-- main_c end -->
  16. </section><!-- mian end -->
  17. <section class="inside_case_c" id="inside_case_c">
  18. <ul id="inside_case_ul">
  19. {dede:list pagesize='18'}
  20. <li class="end_li_[field:global name=autoindex/]">
  21. <a href="[field:arcurl/]" alt="[field:title/]"><img src="[field:litpic/]" title="[field:title/]" width="240px"></a>
  22. <p><a href="[field:arcurl/]" target="_blank">[field:title/]</a></p>
  23. </li>
  24. {/dede:list}
  25. </ul>
  26. <div class="pagelist" style="position:absolute;bottom:-30px;left:200px;">
  27. {dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}
  28. </div>
  29. </section><!-- inside_case_c end -->
  30. {dede:include filename="foot_article.htm"/}
  31. <script src="{dede:global.cfg_templets_skin/}/js/jquery.wookmark.js" type="text/javascript"></script>
  32. <script type="text/javascript">
  33. var handler = null;
  34. // Prepare layout options.
  35. var options = {
  36. autoResize: true, // This will auto-update the layout when the browser window is resized.
  37. container: $('#inside_case_c'), // Optional, used for some extra CSS styling
  38. offset: 18, // Optional, the distance between grid items
  39. itemWidth: 245 // Optional, the width of a grid item
  40. };
  41. /**
  42. * When scrolled all the way to the bottom, add more tiles.
  43. */
  44. function onScroll(event) {
  45. // Check if we're within 100 pixels of the bottom edge of the broser window.
  46. var winHeight = window.innerHeight ? window.innerHeight : $(window).height(); // iphone fix
  47. var closeToBottom = ($(window).scrollTop() + winHeight > $(document).height() - 50);
  48. if(closeToBottom) {
  49. // Get the first then items from the grid, clone them, and add them to the bottom of the grid.
  50. var items = $('#inside_case_ul>li'),
  51. firstTen = items.slice(0, 10);
  52. $('#inside_case_ul').append(firstTen.clone());
  53. // Create a new layout handler.
  54. handler = $('#inside_case_ul>li');
  55. handler.wookmark(options);
  56. }
  57. };
  58. $(document).ready(new function() {
  59. // Capture scroll event.
  60. $(document).bind('scroll', onScroll);
  61. // Call the layout function.
  62. handler = $('#inside_case_ul>li');
  63. handler.wookmark(options);
  64. });
  65. </script>
  66. </body>
  67. </html>