list.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. (function ($) {
  2. "use strict";
  3. /*--/ Star Typed /--*/
  4. if ($('.text-slider').length == 1) {
  5. var typed_strings = $('.text-slider-items').text();
  6. var typed = new Typed('.text-slider', {
  7. strings: typed_strings.split(','),
  8. typeSpeed: 80,
  9. loop: true,
  10. backDelay: 1100,
  11. backSpeed: 30
  12. });
  13. }
  14. function initParallax() {
  15. $('#masthead').parallax("100%", 0.3);
  16. $('#content').parallax("20%", 0.7);
  17. }
  18. initParallax();
  19. let counter;
  20. counter = 0;
  21. let loading = true
  22. $(window).scroll(function () {
  23. if ($(window).scrollTop() + $(window).height() == $(document).height()) {
  24. console.log(counter)
  25. function see_more() {
  26. if (loading) {
  27. counter = counter + 20;
  28. var csrftoken = $.cookie('csrftoken')
  29. let info;
  30. info = {'counter': counter, 'csrfmiddlewaretoken': csrftoken,'flag':'home'}
  31. $.ajax({
  32. type: "POST",
  33. url: 'article/article_list_call/',
  34. data: info,
  35. datatype: 'json',
  36. headers: {"X-CSRFToken": csrftoken},
  37. success: function (data) {
  38. if (data.indexOf('已经到底了') === -1) {
  39. $("#articles_list").append(data);
  40. } else {
  41. loading = false;
  42. }
  43. }
  44. })
  45. }
  46. }
  47. see_more();
  48. }
  49. })
  50. })(jQuery);