123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {dede:include filename="head_list.htm"/}
- <body class="index_sem">
- {dede:include filename="nav_inside.htm"/}
- <section class="main main_case fixed mb20">
- <section class="main_t simple_t">
- {dede:include filename="simple_t.htm"/}
- </section><!-- main_t end -->
- <section class="clearfix mt20">
-
- <section class="inside_case_t">
- {dede:channel typeid='4' type='son' currentstyle="<a href='~typelink~' class='case_curr'>~typename~</a>"}
- <a href='[field:typeurl/]' title="[field:typename/]">[field:typename/]</a>
- {/dede:channel}
- <span >联系电话:400-999-8103</span>
- </section><!-- inside_case_t end -->
-
-
- </section><!-- main_c end -->
- </section><!-- mian end -->
-
- <section class="inside_case_c" id="inside_case_c">
- <ul id="inside_case_ul">
- {dede:list pagesize='18'}
- <li class="end_li_[field:global name=autoindex/]">
- <a href="[field:arcurl/]" alt="[field:title/]"><img src="[field:litpic/]" title="[field:title/]" width="240px"></a>
- <p><a href="[field:arcurl/]" target="_blank">[field:title/]</a></p>
- </li>
- {/dede:list}
- </ul>
- <div class="pagelist" style="position:absolute;bottom:-30px;left:200px;">
- {dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}
- </div>
- </section><!-- inside_case_c end -->
-
- {dede:include filename="foot_article.htm"/}
- <script src="{dede:global.cfg_templets_skin/}/js/jquery.wookmark.js" type="text/javascript"></script>
- <script type="text/javascript">
- var handler = null;
- // Prepare layout options.
- var options = {
- autoResize: true, // This will auto-update the layout when the browser window is resized.
- container: $('#inside_case_c'), // Optional, used for some extra CSS styling
- offset: 18, // Optional, the distance between grid items
- itemWidth: 245 // Optional, the width of a grid item
- };
- /**
- * When scrolled all the way to the bottom, add more tiles.
- */
- function onScroll(event) {
- // Check if we're within 100 pixels of the bottom edge of the broser window.
- var winHeight = window.innerHeight ? window.innerHeight : $(window).height(); // iphone fix
- var closeToBottom = ($(window).scrollTop() + winHeight > $(document).height() - 50);
- if(closeToBottom) {
- // Get the first then items from the grid, clone them, and add them to the bottom of the grid.
- var items = $('#inside_case_ul>li'),
- firstTen = items.slice(0, 10);
- $('#inside_case_ul').append(firstTen.clone());
- // Create a new layout handler.
- handler = $('#inside_case_ul>li');
- handler.wookmark(options);
- }
- };
- $(document).ready(new function() {
- // Capture scroll event.
- $(document).bind('scroll', onScroll);
- // Call the layout function.
- handler = $('#inside_case_ul>li');
- handler.wookmark(options);
- });
- </script>
- </body>
- </html>
|