Geen omschrijving
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_3.htm 3.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. $name = "banner-s-3";
  3. ?>
  4. <link rel="stylesheet" href="/template/pc/components/banner/style_3.css" media="all">
  5. <!--引入swiper-->
  6. <link rel="stylesheet" href="https://oss.zc10000.com/static/js/swiper/swiper-bundle.min.css">
  7. <!--定义div盒子-->
  8. <div class="<?php echo $name; ?>-content">
  9. <div class="box">
  10. <!--定义内容布局--->
  11. <div class="row">
  12. <!--定义内部栅格 上下中左右 使用浮动-->
  13. <div class="top">
  14. <!--定义内容标签 p span a li img--->
  15. <span></span>
  16. {eyou:type typeid='38' empty='暂时没有数据'}
  17. <a href="{:get_tid_url_2($field['typeurl'])}" >热门职称推荐</a>
  18. <font class="more"><a href="{:get_tid_url_2($field['typeurl'])}" style="font-family: 'HarmonyOS Sans SC' !important;">职称专业对照表</a>&nbsp;<img src="https://oss.zc10000.com/static/images/037.svg" /></font>
  19. {/eyou:type}
  20. </div>
  21. <div class="bottom">
  22. <!--定义内容标签 p span a li img--->
  23. <div class="swiper mySwiper-<?php echo $name; ?>">
  24. <div class="swiper-wrapper">
  25. <?php
  26. //area_id=$areaid
  27. $where1 = "area_id>0 and parent_id=38 and topid=38 and is_del=0 and status=1 and is_hot=1";
  28. ?>
  29. {eyou:sql sql="SELECT id FROM __PREFIX__arctype where $where1 order by add_time asc limit 0,15" cachetime='3600' id='res'}
  30. {eyou:foreach name='$res' item='cat'}
  31. {eyou:type typeid='$cat' empty='暂时没有数据' id='field2'}
  32. <div class="swiper-slide" style="position:relative;">
  33. <img src="https://oss.zc10000.com/static/images/bg_1.png" width="227" height="234"/>
  34. <a href="{:get_tid_url_2($field2['typeurl'],0,0,0,'产品',$field2['topid'],$field2['area_id'])}">{$field2.typename}</a>
  35. <span style="display:block;position: absolute;top:35%;width:100%;text-align:center;font-size: 20px;font-weight: bold;">
  36. {$field2.typename} </span>
  37. </div>
  38. {/eyou:type}
  39. {/eyou:foreach}
  40. {/eyou:sql}
  41. </div>
  42. <div class="swiper-button-next"></div>
  43. <div class="swiper-button-prev"></div>
  44. <!-- <div class="swiper-pagination"></div>-->
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. <!--引入swiper-->
  51. <script src="https://oss.zc10000.com/static/js/swiper/swiper-bundle.min.js"> </script>
  52. <script>
  53. var swiper = new Swiper(".mySwiper-<?php echo $name; ?>", {
  54. slidesPerView: 4,
  55. spaceBetween: 30,
  56. pagination: {
  57. el: ".swiper-pagination",
  58. clickable: true,
  59. },
  60. loop: true,
  61. loopFillGroupWithBlank: true,
  62. navigation: {
  63. nextEl: ".swiper-button-next",
  64. prevEl: ".swiper-button-prev",
  65. },
  66. });
  67. </script>