暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

style_6.htm 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. $name = "banner-s-6";
  3. ?>
  4. <link rel="stylesheet" href="/template/mobile/components/banner/style_6.css?v=<?php echo rand(1,100000); ?>" media="all">
  5. <!--引入swiper-->
  6. <link rel="stylesheet" href="https://oss.zc10000.com/static/js/swiper/swiper-bundle.min.css?v=<?php echo rand(1,100000); ?>">
  7. <!--定义div盒子-->
  8. <div class="<?php echo $name; ?>-content">
  9. <div class="box">
  10. <!--定义内容布局--->
  11. <div class="row" style="min-height: 394px;">
  12. <!--定义内部栅格 上下中左右 使用浮动-->
  13. <div class="bottom">
  14. <!--定义内容标签 p span a li img--->
  15. <div class="swiper mySwiper-<?php echo $name; ?>">
  16. <div class="swiper-wrapper">
  17. {eyou:artlist typeid='130' limit='0,4' titlelen='30' infolen='160' orderby='add_time'}
  18. <!--<a href='{$field.arcurl}'>{$field.title}</a>-->
  19. <div class="swiper-slide">
  20. <img src="{$field.litpic}" style="width:1007px;height:394px;"/>
  21. <!--<a href="">建筑职称</a>-->
  22. </div>
  23. {/eyou:artlist}
  24. </div>
  25. <!-- <div class="swiper-button-next"></div>
  26. <div class="swiper-button-prev"></div>
  27. <div class="swiper-pagination"></div>-->
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. <!--引入swiper-->
  34. <script src="https://oss.zc10000.com/static/js/swiper/swiper-bundle.min.js"> </script>
  35. <script>
  36. var swiper = new Swiper(".mySwiper-<?php echo $name; ?>", {
  37. slidesPerView: 1,
  38. //spaceBetween: 30,
  39. pagination: {
  40. el: ".swiper-pagination",
  41. clickable: true,
  42. },
  43. loop: true,
  44. loopFillGroupWithBlank: true,
  45. navigation: {
  46. nextEl: ".swiper-button-next",
  47. prevEl: ".swiper-button-prev",
  48. },
  49. });
  50. </script>