contabs.min.js 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. $(function() {
  2. function f(l) {
  3. var k = 0;
  4. $(l).each(function() {
  5. k += $(this).outerWidth(true)
  6. });
  7. return k
  8. }
  9. function g(n) {
  10. var o = f($(n).prevAll())
  11. , q = f($(n).nextAll());
  12. var l = f($(".content-tabs").children().not(".J_menuTabs"));
  13. var k = $(".content-tabs").outerWidth(true) - l;
  14. var p = 0;
  15. if ($(".page-tabs-content").outerWidth() < k) {
  16. p = 0
  17. } else {
  18. if (q <= (k - $(n).outerWidth(true) - $(n).next().outerWidth(true))) {
  19. if ((k - $(n).next().outerWidth(true)) > q) {
  20. p = o;
  21. var m = n;
  22. while ((p - $(m).outerWidth()) > ($(".page-tabs-content").outerWidth() - k)) {
  23. p -= $(m).prev().outerWidth();
  24. m = $(m).prev()
  25. }
  26. }
  27. } else {
  28. if (o > (k - $(n).outerWidth(true) - $(n).prev().outerWidth(true))) {
  29. p = o - $(n).prev().outerWidth(true)
  30. }
  31. }
  32. }
  33. $(".page-tabs-content").animate({
  34. marginLeft: 0 - p + "px"
  35. }, "fast")
  36. }
  37. function a() {
  38. var o = Math.abs(parseInt($(".page-tabs-content").css("margin-left")));
  39. var l = f($(".content-tabs").children().not(".J_menuTabs"));
  40. var k = $(".content-tabs").outerWidth(true) - l;
  41. var p = 0;
  42. if ($(".page-tabs-content").width() < k) {
  43. return false
  44. } else {
  45. var m = $(".J_menuTab:first");
  46. var n = 0;
  47. while ((n + $(m).outerWidth(true)) <= o) {
  48. n += $(m).outerWidth(true);
  49. m = $(m).next()
  50. }
  51. n = 0;
  52. if (f($(m).prevAll()) > k) {
  53. while ((n + $(m).outerWidth(true)) < (k) && m.length > 0) {
  54. n += $(m).outerWidth(true);
  55. m = $(m).prev()
  56. }
  57. p = f($(m).prevAll())
  58. }
  59. }
  60. $(".page-tabs-content").animate({
  61. marginLeft: 0 - p + "px"
  62. }, "fast")
  63. }
  64. function b() {
  65. var o = Math.abs(parseInt($(".page-tabs-content").css("margin-left")));
  66. var l = f($(".content-tabs").children().not(".J_menuTabs"));
  67. var k = $(".content-tabs").outerWidth(true) - l;
  68. var p = 0;
  69. if ($(".page-tabs-content").width() < k) {
  70. return false
  71. } else {
  72. var m = $(".J_menuTab:first");
  73. var n = 0;
  74. while ((n + $(m).outerWidth(true)) <= o) {
  75. n += $(m).outerWidth(true);
  76. m = $(m).next()
  77. }
  78. n = 0;
  79. while ((n + $(m).outerWidth(true)) < (k) && m.length > 0) {
  80. n += $(m).outerWidth(true);
  81. m = $(m).next()
  82. }
  83. p = f($(m).prevAll());
  84. if (p > 0) {
  85. $(".page-tabs-content").animate({
  86. marginLeft: 0 - p + "px"
  87. }, "fast")
  88. }
  89. }
  90. }
  91. $(".J_menuItem").each(function(k) {
  92. if (!$(this).attr("data-index")) {
  93. $(this).attr("data-index", k)
  94. }
  95. });
  96. function c() {
  97. var o = $(this).attr("href")
  98. , m = $(this).data("index")
  99. , l = $.trim($(this).text())
  100. , k = true;
  101. if (o == undefined || $.trim(o).length == 0) {
  102. return false
  103. }
  104. // $(".J_menuTab").each(function() {
  105. // if ($(this).data("id") == o) {
  106. // if (!$(this).hasClass("active")) {
  107. // $(this).addClass("active").siblings(".J_menuTab").removeClass("active");
  108. // g(this);
  109. // $(".J_mainContent .J_iframe").each(function() {
  110. // if ($(this).data("id") == o) {
  111. // $(this).show().siblings(".J_iframe").hide();
  112. // return false
  113. // }
  114. // })
  115. // }
  116. // k = false;
  117. // return false
  118. // }
  119. // });
  120. if (k) {
  121. // var p = '<a href="javascript:;" class="active J_menuTab" data-id="' + o + '">' + l + ' <i class="fa fa-times-circle"></i></a>';
  122. // $(".J_menuTab").removeClass("active");
  123. // var n = '<iframe class="J_iframe" name="iframe' + m + '" width="100%" height="100%" src="' + o + '" frameborder="0" data-id="' + o + '" seamless></iframe>';
  124. $(".J_mainContent").find("iframe.J_iframe").attr("src", o);
  125. $(".J_mainContent").find("iframe.J_iframe").attr("id", o);
  126. // $(".J_mainContent").append(n);
  127. // $(".J_menuTabs .page-tabs-content").append(p);
  128. // g($(".J_menuTab.active"))
  129. }
  130. return false
  131. }
  132. $("body").on("click",".J_menuItem", c);
  133. function h() {
  134. var m = $(this).parents(".J_menuTab").data("id");
  135. var l = $(this).parents(".J_menuTab").width();
  136. if ($(this).parents(".J_menuTab").hasClass("active")) {
  137. if ($(this).parents(".J_menuTab").next(".J_menuTab").size()) {
  138. var k = $(this).parents(".J_menuTab").next(".J_menuTab:eq(0)").data("id");
  139. $(this).parents(".J_menuTab").next(".J_menuTab:eq(0)").addClass("active");
  140. $(".J_mainContent .J_iframe").each(function() {
  141. if ($(this).data("id") == k) {
  142. $(this).show().siblings(".J_iframe").hide();
  143. return false
  144. }
  145. });
  146. var n = parseInt($(".page-tabs-content").css("margin-left"));
  147. if (n < 0) {
  148. $(".page-tabs-content").animate({
  149. marginLeft: (n + l) + "px"
  150. }, "fast")
  151. }
  152. $(this).parents(".J_menuTab").remove();
  153. $(".J_mainContent .J_iframe").each(function() {
  154. if ($(this).data("id") == m) {
  155. $(this).remove();
  156. return false
  157. }
  158. })
  159. }
  160. if ($(this).parents(".J_menuTab").prev(".J_menuTab").size()) {
  161. var k = $(this).parents(".J_menuTab").prev(".J_menuTab:last").data("id");
  162. $(this).parents(".J_menuTab").prev(".J_menuTab:last").addClass("active");
  163. $(".J_mainContent .J_iframe").each(function() {
  164. if ($(this).data("id") == k) {
  165. $(this).show().siblings(".J_iframe").hide();
  166. return false
  167. }
  168. });
  169. $(this).parents(".J_menuTab").remove();
  170. $(".J_mainContent .J_iframe").each(function() {
  171. if ($(this).data("id") == m) {
  172. $(this).remove();
  173. return false
  174. }
  175. })
  176. }
  177. } else {
  178. $(this).parents(".J_menuTab").remove();
  179. $(".J_mainContent .J_iframe").each(function() {
  180. if ($(this).data("id") == m) {
  181. $(this).remove();
  182. return false
  183. }
  184. });
  185. g($(".J_menuTab.active"))
  186. }
  187. return false
  188. }
  189. $(".J_menuTabs").on("click", ".J_menuTab i", h);
  190. function i() {
  191. $(".page-tabs-content").children("[data-id]").not(":first").not(".active").each(function() {
  192. $('.J_iframe[data-id="' + $(this).data("id") + '"]').remove();
  193. $(this).remove()
  194. });
  195. $(".page-tabs-content").css("margin-left", "0")
  196. }
  197. $(".J_tabCloseOther").on("click", i);
  198. function j() {
  199. g($(".J_menuTab.active"))
  200. }
  201. $(".J_tabShowActive").on("click", j);
  202. function e() {
  203. if (!$(this).hasClass("active")) {
  204. var k = $(this).data("id");
  205. $(".J_mainContent .J_iframe").each(function() {
  206. if ($(this).data("id") == k) {
  207. $(this).show().siblings(".J_iframe").hide();
  208. return false
  209. }
  210. });
  211. $(this).addClass("active").siblings(".J_menuTab").removeClass("active");
  212. g(this)
  213. }
  214. }
  215. $(".J_menuTabs").on("click", ".J_menuTab", e);
  216. function d() {
  217. var l = $('.J_iframe[data-id="' + $(this).data("id") + '"]');
  218. var k = l.attr("src")
  219. }
  220. $(".J_menuTabs").on("dblclick", ".J_menuTab", d);
  221. $(".J_tabLeft").on("click", a);
  222. $(".J_tabRight").on("click", b);
  223. $(".J_tabCloseAll").on("click", function() {
  224. $(".page-tabs-content").children("[data-id]").not(":first").each(function() {
  225. $('.J_iframe[data-id="' + $(this).data("id") + '"]').remove();
  226. $(this).remove()
  227. });
  228. $(".page-tabs-content").children("[data-id]:first").each(function() {
  229. $('.J_iframe[data-id="' + $(this).data("id") + '"]').show();
  230. $(this).addClass("active")
  231. });
  232. $(".page-tabs-content").css("margin-left", "0")
  233. })
  234. });