motion.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /* global NexT, CONFIG, Velocity */
  2. if (window.$ && window.$.Velocity) window.Velocity = window.$.Velocity;
  3. NexT.motion = {};
  4. NexT.motion.integrator = {
  5. queue : [],
  6. cursor: -1,
  7. init : function() {
  8. this.queue = [];
  9. this.cursor = -1;
  10. return this;
  11. },
  12. add: function(fn) {
  13. this.queue.push(fn);
  14. return this;
  15. },
  16. next: function() {
  17. this.cursor++;
  18. var fn = this.queue[this.cursor];
  19. typeof fn === 'function' && fn(NexT.motion.integrator);
  20. },
  21. bootstrap: function() {
  22. this.next();
  23. }
  24. };
  25. NexT.motion.middleWares = {
  26. logo: function(integrator) {
  27. var sequence = [];
  28. var brand = document.querySelector('.brand');
  29. var image = document.querySelector('.custom-logo-image');
  30. var title = document.querySelector('.site-title');
  31. var subtitle = document.querySelector('.site-subtitle');
  32. var logoLineTop = document.querySelector('.logo-line-before i');
  33. var logoLineBottom = document.querySelector('.logo-line-after i');
  34. brand && sequence.push({
  35. e: brand,
  36. p: {opacity: 1},
  37. o: {duration: 200}
  38. });
  39. function getMistLineSettings(element, translateX) {
  40. return {
  41. e: element,
  42. p: {translateX},
  43. o: {
  44. duration : 500,
  45. sequenceQueue: false
  46. }
  47. };
  48. }
  49. function pushImageToSequence() {
  50. sequence.push({
  51. e: image,
  52. p: {opacity: 1, top: 0},
  53. o: {duration: 200}
  54. });
  55. }
  56. CONFIG.scheme === 'Mist' && logoLineTop && logoLineBottom
  57. && sequence.push(
  58. getMistLineSettings(logoLineTop, '100%'),
  59. getMistLineSettings(logoLineBottom, '-100%')
  60. );
  61. CONFIG.scheme === 'Muse' && image && pushImageToSequence();
  62. title && sequence.push({
  63. e: title,
  64. p: {opacity: 1, top: 0},
  65. o: {duration: 200}
  66. });
  67. subtitle && sequence.push({
  68. e: subtitle,
  69. p: {opacity: 1, top: 0},
  70. o: {duration: 200}
  71. });
  72. (CONFIG.scheme === 'Pisces' || CONFIG.scheme === 'Gemini') && image && pushImageToSequence();
  73. if (sequence.length > 0) {
  74. sequence[sequence.length - 1].o.complete = function() {
  75. integrator.next();
  76. };
  77. Velocity.RunSequence(sequence);
  78. } else {
  79. integrator.next();
  80. }
  81. if (CONFIG.motion.async) {
  82. integrator.next();
  83. }
  84. },
  85. menu: function(integrator) {
  86. Velocity(document.querySelectorAll('.menu-item'), 'transition.slideDownIn', {
  87. display : null,
  88. duration: 200,
  89. complete: function() {
  90. integrator.next();
  91. }
  92. });
  93. if (CONFIG.motion.async) {
  94. integrator.next();
  95. }
  96. },
  97. subMenu: function(integrator) {
  98. var subMenuItem = document.querySelectorAll('.sub-menu .menu-item');
  99. if (subMenuItem.length > 0) {
  100. subMenuItem.forEach(element => {
  101. element.style.opacity = 1;
  102. });
  103. }
  104. integrator.next();
  105. },
  106. postList: function(integrator) {
  107. var postBlock = document.querySelectorAll('.post-block, .pagination, .comments');
  108. var postBlockTransition = CONFIG.motion.transition.post_block;
  109. var postHeader = document.querySelectorAll('.post-header');
  110. var postHeaderTransition = CONFIG.motion.transition.post_header;
  111. var postBody = document.querySelectorAll('.post-body');
  112. var postBodyTransition = CONFIG.motion.transition.post_body;
  113. var collHeader = document.querySelectorAll('.collection-header');
  114. var collHeaderTransition = CONFIG.motion.transition.coll_header;
  115. if (postBlock.length > 0) {
  116. var postMotionOptions = window.postMotionOptions || {
  117. stagger : 100,
  118. drag : true,
  119. complete: function() {
  120. integrator.next();
  121. }
  122. };
  123. if (CONFIG.motion.transition.post_block) {
  124. Velocity(postBlock, 'transition.' + postBlockTransition, postMotionOptions);
  125. }
  126. if (CONFIG.motion.transition.post_header) {
  127. Velocity(postHeader, 'transition.' + postHeaderTransition, postMotionOptions);
  128. }
  129. if (CONFIG.motion.transition.post_body) {
  130. Velocity(postBody, 'transition.' + postBodyTransition, postMotionOptions);
  131. }
  132. if (CONFIG.motion.transition.coll_header) {
  133. Velocity(collHeader, 'transition.' + collHeaderTransition, postMotionOptions);
  134. }
  135. }
  136. if (CONFIG.scheme === 'Pisces' || CONFIG.scheme === 'Gemini') {
  137. integrator.next();
  138. }
  139. },
  140. sidebar: function(integrator) {
  141. var sidebarAffix = document.querySelector('.sidebar-inner');
  142. var sidebarAffixTransition = CONFIG.motion.transition.sidebar;
  143. // Only for Pisces | Gemini.
  144. if (sidebarAffixTransition && (CONFIG.scheme === 'Pisces' || CONFIG.scheme === 'Gemini')) {
  145. Velocity(sidebarAffix, 'transition.' + sidebarAffixTransition, {
  146. display : null,
  147. duration: 200,
  148. complete: function() {
  149. // After motion complete need to remove transform from sidebar to let affix work on Pisces | Gemini.
  150. sidebarAffix.style.transform = 'initial';
  151. }
  152. });
  153. }
  154. integrator.next();
  155. }
  156. };