txbb-pop.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /**
  2. * Txbb.Pop 组件
  3. *
  4. * 同学帮帮弹出层组件
  5. * 0.4.0
  6. * by zhangyang
  7. */
  8. (function (factory) {
  9. 'use strict';
  10. if (typeof define !== 'undefined' && define.amd) {
  11. define('Txbb/Pop', function () {
  12. return factory.call(null);
  13. });
  14. } else {
  15. if (!window.Txbb) window.Txbb = {};
  16. window.Txbb.Pop = factory.call(null);
  17. }
  18. }(function () {
  19. 'use strict';
  20. // helps
  21. function q(s) {
  22. return document.querySelector(s);
  23. }
  24. function elem(nodeType, attrs) {
  25. var node = document.createElement(nodeType);
  26. if (attrs) {
  27. for (var k in attrs) {
  28. node[k] = attrs[k];
  29. }
  30. }
  31. return node;
  32. }
  33. function extend(origin, extendObj) {
  34. var back = {};
  35. if (origin) {
  36. for (var k1 in origin) {
  37. back[k1] = origin[k1];
  38. }
  39. }
  40. if (extendObj) {
  41. for (var k2 in extendObj) {
  42. back[k2] = extendObj[k2];
  43. }
  44. }
  45. return back;
  46. }
  47. Element.prototype._css = function (attrs) {
  48. if (!this) return this;
  49. if (attrs) {
  50. for (var k in attrs) {
  51. if (this.style.hasOwnProperty(k))
  52. this.style[k] = attrs[k];
  53. }
  54. }
  55. return this;
  56. };
  57. Element.prototype._attr = function (attrs) {
  58. if (!this) return this;
  59. if (attrs && typeof attrs === 'object') {
  60. for (var k in attrs) {
  61. this.setAttribute(k, attrs[k]);
  62. }
  63. }
  64. if (attrs && typeof attrs === 'string') return this.getAttribute(attrs);
  65. return this;
  66. };
  67. Element.prototype._remove = function () {
  68. this.parentNode.removeChild(this);
  69. };
  70. Element.prototype._show = function () {
  71. this.style.display = 'block';
  72. };
  73. Element.prototype._hide = function () {
  74. this.style.display = 'none';
  75. };
  76. Element.prototype._addEvent = function (eventNames, handler) {
  77. var events = eventNames.split(/\s+/);
  78. var _this = this;
  79. events.forEach(function (evt) {
  80. _this.addEventListener(evt, handler, false);
  81. });
  82. return _this;
  83. };
  84. Element.prototype._offset = function () {
  85. var offset = {
  86. left: 0,
  87. top: 0
  88. };
  89. var dom = this;
  90. while (dom && dom !== document.body) {
  91. offset.left += dom.offsetLeft;
  92. offset.top += dom.offsetTop;
  93. dom = dom.offsetParent; // 0.1.1 修复 _offset 方法错误
  94. }
  95. return offset;
  96. };
  97. /*-------------- 华丽丽的分割线 ---------------*/
  98. var empty = function () {
  99. };
  100. var toastTiming;
  101. var toastStyleTop ={
  102. 'box-sizing': 'border-box',
  103. 'width': '90%',
  104. 'background-color': 'rgba(0,0,0,0.8)',
  105. 'box-shadow':'0 0 3px #e64a58',
  106. 'color': '#fff',
  107. 'font-size': '16px',
  108. 'border-radius': '50px',
  109. 'position': 'fixed',
  110. 'top':'10px',
  111. 'left': '5%',
  112. 'text-align': 'center',
  113. 'padding': '10px 0',
  114. 'z-index': 26
  115. };
  116. var toastStyleCenter ={
  117. 'box-sizing': 'border-box',
  118. 'width': '90%',
  119. 'background-color': 'rgba(0,0,0,0.8)',
  120. 'box-shadow':'0 0 3px #e64a58',
  121. 'color': '#fff',
  122. 'font-size': '16px',
  123. 'border-radius': '50px',
  124. 'position': 'fixed',
  125. 'bottom':'20%',
  126. 'left': '5%',
  127. 'margin-top':'-1.4rem',
  128. 'text-align': 'center',
  129. 'padding': '10px 0',
  130. 'z-index': 26
  131. };
  132. var toastStyleBottom ={
  133. 'box-sizing': 'border-box',
  134. 'width': '90%',
  135. 'background-color': 'rgba(0,0,0,0.8)',
  136. 'box-shadow':'0 0 3px #e64a58',
  137. 'color': '#fff',
  138. 'font-size': '16px',
  139. 'border-radius': '50px',
  140. 'position': 'fixed',
  141. 'bottom':'10px',
  142. 'left': '5%',
  143. 'text-align': 'center',
  144. 'padding': '10px 0',
  145. 'z-index': 26
  146. };
  147. function hideToast() {
  148. toastTiming = setTimeout(function () {
  149. q('#J-TxbbToast')._css({
  150. 'opacity': 0,
  151. '-webkit-transition': 'opacity 1s linear'
  152. });
  153. toastTiming = setTimeout(function () {
  154. q('#J-TxbbToast')._remove();
  155. }, 1000);
  156. }, 1000);
  157. }
  158. function toast(msg,pos) {
  159. if (q('#J-TxbbToast')) {
  160. clearTimeout(toastTiming);
  161. q('#J-TxbbToast')._css({
  162. 'opacity': 1,
  163. '-webkit-transition': 'none'
  164. }).innerHTML = msg;
  165. hideToast();
  166. return;
  167. }
  168. var div = elem('div', {id: 'J-TxbbToast'});
  169. if(pos=='top'){
  170. div._css(toastStyleTop).innerHTML = msg;
  171. }else if(pos=='center'){
  172. div._css(toastStyleCenter).innerHTML = msg;
  173. }else{
  174. div._css(toastStyleBottom).innerHTML = msg;
  175. }
  176. document.body.appendChild(div);
  177. hideToast();
  178. }
  179. return function (name, options,pos) {
  180. if (name === 'toast') {
  181. toast(options,pos);
  182. return;
  183. }
  184. };
  185. }));