footer.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <div class="bg"><img src="__TMPL__/static/picture/bg.png" alt="51加盟网"></div>
  2. <!-- 底部footer -->
  3. <footer>
  4. <!-- 底部导航 -->
  5. <div class="foot_nav box">
  6. <p class="p1">
  7. <a href="/about/" rel="nofollow">关于我们</a>
  8. <em>|</em>
  9. <a href="/about/service.html" rel="nofollow">招商服务</a>
  10. <em>|</em>
  11. <a href="/about/statement.html" rel="nofollow">免责申明</a>
  12. <em>|</em>
  13. <a href="/about/zhaopin.html" rel="nofollow">加入我们</a>
  14. <em>|</em>
  15. <a href="/about/tousu.html" rel="nofollow">投诉删除</a>
  16. <!--<em>|</em>
  17. <a href="/about/contact.html" rel="nofollow">联系我们</a>
  18. <em>|</em>-->
  19. <!--<a href="/pre.html">返回旧版</a>-->
  20. </p>
  21. <p class="p2">
  22. 客服QQ:<strong>2383952183</strong>
  23. </p>
  24. </div>
  25. <!-- 底部版权信息 -->
  26. <div class="mass box">
  27. <div class="mass_l fl">
  28. <img src="__TMPL__/static/picture/logo_bottom.png" alt="91加盟网">
  29. <p>招商加盟一站式综合服务平台</p>
  30. </div>
  31. <div class="mass_c fl">
  32. <p>版权所有 © 91加盟网</p>
  33. <p>Copyright © www.91jmls.com All Rights Reserved</p>
  34. <p>备案号:<em>京ICP备88888888号-1</em></p>
  35. </div>
  36. <div class="mass_r fr">
  37. <img src="__TMPL__/static/picture/foot.png">
  38. </div>
  39. </div>
  40. <!-- 友情提醒 -->
  41. <div class="notice box">
  42. <img src="__TMPL__/static/picture/bottom.jpg" alt="">
  43. </div>
  44. </footer>
  45. <style>
  46. .to{
  47. position: sticky;
  48. top:20px;
  49. }
  50. </style>
  51. <!-- 友情链接 -->
  52. <?php
  53. isset($link_cate_name) or $link_cate_name='';
  54. if($link_cate_name!=''){
  55. $links = get_link($link_cate_name);
  56. }else{
  57. $links = array();
  58. }
  59. ?>
  60. <?php if(count($links)){ ?>
  61. <div class="foot_link box">
  62. <a href="javascript:;">友情链接:</a>
  63. <foreach name="links" id="vo">
  64. <a href="{$vo.url}" target="_blank">{$vo.name}</a>
  65. </foreach>
  66. </div>
  67. <?php } ?>
  68. <div class="float_ri">
  69. <ul class="con">
  70. <li><a href="javascript:void(0)" id="zixun" class="zx" rel="nofollow">在线咨询</a></li>
  71. <li><a href="javascript:" class="weixin"><div class="test" style="display: none;"><img src="/Public/home/images/code.gif" alt=""><span>扫描关注我们</span></div>关注我们</a></li>
  72. </ul>
  73. <ul class="to">
  74. <li><a href="javascript:void(0)" class="topfl" rel="nofollow" style="display: block;">回到顶部</a></li>
  75. </ul>
  76. </div>
  77. <script>
  78. $(window).scroll(function() {
  79. var scroHei = $(window).scrollTop();
  80. if (scroHei > 250) {
  81. $('.float_ri .to').fadeIn();
  82. } else {
  83. $('.float_ri .to').fadeOut();
  84. }
  85. });
  86. </script>
  87. <script>
  88. $(".topfl").click(function() {
  89. $('body,html').animate({
  90. scrollTop: 0
  91. },
  92. 500);
  93. return false;
  94. });
  95. </script>
  96. <script src="__TMPL__/static/layer/layer.js"></script>
  97. <script>
  98. $('#zixun').on('click', function(){
  99. layer.open({
  100. type: 2,
  101. title: '在线咨询',
  102. maxmin: true,
  103. shadeClose: true, //点击遮罩关闭层
  104. area : ['800px' , '520px'],
  105. content: '/index/news/message'
  106. });
  107. });
  108. </script>