설명 없음
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.

hotpost.htm 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <div class="hot-users" id="userRecommend">
  2. <!-- 显示热门帖子 -->
  3. <h3 class="block-head">
  4. <i class="fa fa-trophy" style="margin-right:10px;font-size: 18px"></i>热门帖子
  5. <div class="hot-sw">
  6. <span class="listType" style="margin-right:10px;cursor: pointer" data-type="week">周榜</span>
  7. <font style="color: #e5e5e5">|</font>
  8. <span class="act listType" style="margin-left:10px;cursor: pointer" data-type="total">总榜</span>
  9. </div>
  10. </h3>
  11. <!-- END -->
  12. <!-- 周榜 -->
  13. <ul id="weekList" style="display: none;">
  14. {eyou:volist name="$eyou.field.WeekList" id="week"}
  15. <a href="{$week.AskUrl}" target="_blank">
  16. <li>
  17. <div class="hot-user-avter">{$key+1}</div>
  18. <div class="hot-user-info">
  19. <div class="hot-nice">{$week.ask_title}</div>
  20. </div>
  21. </li>
  22. </a>
  23. {/eyou:volist}
  24. </ul>
  25. <!-- END -->
  26. <!-- 总榜 -->
  27. <ul id="totalList">
  28. {eyou:volist name="$eyou.field.TotalList" id="total"}
  29. <a href="{$total.AskUrl}" target="_blank">
  30. <li>
  31. <div class="hot-user-avter">{$key+1}</div>
  32. <div class="hot-user-info">
  33. <div class="hot-nice">{$total.ask_title}</div>
  34. </div>
  35. </li>
  36. </a>
  37. {/eyou:volist}
  38. </ul>
  39. <!-- END -->
  40. </div>
  41. <script type="text/javascript">
  42. $(function() {
  43. // 排行榜
  44. $('.listType').hover(function() {
  45. $('.hot-sw').find('span').removeClass('act');
  46. $(this).addClass('act');
  47. var type = $(this).data('type');
  48. if ('week' == type) {
  49. $('#weekList').show();
  50. $('#totalList').hide();
  51. } else {
  52. $('#weekList').hide();
  53. $('#totalList').show();
  54. }
  55. });
  56. });
  57. </script>