Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style_5.htm 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. $name = "banner-s-5";
  3. ?>
  4. <link rel="stylesheet" href="/template/mobile/components/banner/style_5.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">
  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. <!--<div class="swiper-slide">
  18. <img src="https://www.wetools.com/imgplaceholder/1050x300" />
  19. <a href="">建筑职称</a>
  20. <a href='{$field.links}'>></a>
  21. </div>-->
  22. {eyou:adv pid='16' loop='3'}
  23. <div class="swiper-slide"><a href='{$field.links}' style="position: static;height: 100%;padding:0;margin:0;">
  24. <img alt='{$field.title}' src='{$field.litpic}' style="width:100%;" /></a>
  25. </div>
  26. {/eyou:adv}
  27. </div>
  28. <div class="swiper-button-next"></div>
  29. <div class="swiper-button-prev"></div>
  30. <div class="swiper-pagination"></div>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. <!--引入swiper-->
  37. <script src="https://oss.zc10000.com/static/js/swiper/swiper-bundle.min.js"> </script>
  38. <script>
  39. var swiper = new Swiper(".mySwiper-<?php echo $name; ?>", {
  40. slidesPerView: 1,
  41. //spaceBetween: 30,
  42. pagination: {
  43. el: ".swiper-pagination",
  44. clickable: true,
  45. },
  46. loop: true,
  47. loopFillGroupWithBlank: true,
  48. navigation: {
  49. nextEl: ".swiper-button-next",
  50. prevEl: ".swiper-button-prev",
  51. },
  52. });
  53. </script>