contabs.min.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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("main"),
  99. l = $.trim($(this).text()),
  100. k = true;
  101. if (o == undefined || $.trim(o).length == 0) {
  102. return false
  103. }
  104. if(localStorage.getItem("refresh") == "on"){
  105. ref();//点击左边菜单刷新
  106. }
  107. $(".J_menuTab").each(function() {
  108. if ($(this).data("id") == o) {
  109. if (!$(this).hasClass("active")) {
  110. $(this).addClass("active").siblings(".J_menuTab").removeClass("active");
  111. g(this);
  112. $(".J_mainContent .J_iframe").each(function() {
  113. if ($(this).data("id") == o) {
  114. $(this).show().siblings(".J_iframe").hide();
  115. return false
  116. }
  117. })
  118. }
  119. k = false;
  120. return false
  121. }
  122. });
  123. if (k) {
  124. var p = '<a href="javascript:;" class="active J_menuTab" data-id="' + o + '">' + l + ' <i class="fa fa-times-circle"></i></a>';
  125. $(".J_menuTab").removeClass("active");
  126. var n = '<iframe class="J_iframe" name="iframe' + m + '" width="100%" height="100%" src="' + o + '" frameborder="0" data-id="' + o + '" seamless></iframe>';
  127. $(".J_mainContent").find("iframe.J_iframe").hide().parents(".J_mainContent").append(n);
  128. $(".J_menuTabs .page-tabs-content").append(p);
  129. g($(".J_menuTab.active"))
  130. }
  131. return false
  132. }
  133. $(".J_menuItem").on("click", c);
  134. function h() {
  135. var m = $(this).parents(".J_menuTab").data("id");
  136. var l = $(this).parents(".J_menuTab").width();
  137. if ($(this).parents(".J_menuTab").hasClass("active")) {
  138. if ($(this).parents(".J_menuTab").next(".J_menuTab").size()) {
  139. var k = $(this).parents(".J_menuTab").next(".J_menuTab:eq(0)").data("id");
  140. $(this).parents(".J_menuTab").next(".J_menuTab:eq(0)").addClass("active");
  141. $(".J_mainContent .J_iframe").each(function() {
  142. if ($(this).data("id") == k) {
  143. $(this).show().siblings(".J_iframe").hide();
  144. return false
  145. }
  146. });
  147. var n = parseInt($(".page-tabs-content").css("margin-left"));
  148. if (n < 0) {
  149. $(".page-tabs-content").animate({
  150. marginLeft: (n + l) + "px"
  151. }, "fast")
  152. }
  153. $(this).parents(".J_menuTab").remove();
  154. $(".J_mainContent .J_iframe").each(function() {
  155. if ($(this).data("id") == m) {
  156. $(this).remove();
  157. return false
  158. }
  159. })
  160. }
  161. if ($(this).parents(".J_menuTab").prev(".J_menuTab").size()) {
  162. var k = $(this).parents(".J_menuTab").prev(".J_menuTab:last").data("id");
  163. $(this).parents(".J_menuTab").prev(".J_menuTab:last").addClass("active");
  164. $(".J_mainContent .J_iframe").each(function() {
  165. if ($(this).data("id") == k) {
  166. $(this).show().siblings(".J_iframe").hide();
  167. return false
  168. }
  169. });
  170. $(this).parents(".J_menuTab").remove();
  171. $(".J_mainContent .J_iframe").each(function() {
  172. if ($(this).data("id") == m) {
  173. $(this).remove();
  174. return false
  175. }
  176. })
  177. }
  178. } else {
  179. $(this).parents(".J_menuTab").remove();
  180. $(".J_mainContent .J_iframe").each(function() {
  181. if ($(this).data("id") == m) {
  182. $(this).remove();
  183. return false
  184. }
  185. });
  186. g($(".J_menuTab.active"))
  187. }
  188. return false
  189. }
  190. $(".J_menuTabs").on("click", ".J_menuTab i", h);
  191. function i() {
  192. $(".page-tabs-content").children("[data-id]").not(":first").not(".active").each(function() {
  193. $('.J_iframe[data-id="' + $(this).data("id") + '"]').remove();
  194. $(this).remove()
  195. });
  196. $(".page-tabs-content").css("margin-left", "0")
  197. }
  198. $(".J_tabCloseOther").on("click", i);
  199. function j() {
  200. g($(".J_menuTab.active"))
  201. }
  202. $(".J_tabShowActive").on("click", j);
  203. function e() {
  204. if (!$(this).hasClass("active")) {
  205. var k = $(this).data("id");
  206. $(".J_mainContent .J_iframe").each(function() {
  207. if ($(this).data("id") == k) {
  208. $(this).show().siblings(".J_iframe").hide();
  209. return false
  210. }
  211. });
  212. $(this).addClass("active").siblings(".J_menuTab").removeClass("active");
  213. g(this)
  214. }
  215. }
  216. $(".J_menuTabs").on("click", ".J_menuTab", e);
  217. function d() {
  218. var l = $('.J_iframe[data-id="' + $(this).data("id") + '"]');
  219. var k = l.attr("src")
  220. }
  221. $(".J_menuTabs").on("dblclick", ".J_menuTab", d);
  222. $(".J_tabLeft").on("click", a);
  223. $(".J_tabRight").on("click", b);
  224. $(".J_tabCloseAll").on("click", function() {
  225. $(".page-tabs-content").children("[data-id]").not(":first").each(function() {
  226. $('.J_iframe[data-id="' + $(this).data("id") + '"]').remove();
  227. $(this).remove()
  228. });
  229. $(".page-tabs-content").children("[data-id]:first").each(function() {
  230. $('.J_iframe[data-id="' + $(this).data("id") + '"]').show();
  231. $(this).addClass("active")
  232. });
  233. $(".page-tabs-content").css("margin-left", "0")
  234. })
  235. //返回
  236. function rep() {
  237. $(".J_iframe:visible")[0].contentWindow.history.go(-1);
  238. }
  239. $(".J_tabReply").on("click", rep);
  240. //刷新
  241. function ref() {
  242. // $(".J_iframe:visible")[0].contentWindow.location.reload();
  243. window.frames[$(".page-tabs-content .active").index()].location.reload();
  244. }
  245. $(".J_tabRefresh").on("click", ref);
  246. window.addframes=function(href,main,text) {
  247. var o = href,
  248. m = main,
  249. l = $.trim(text),
  250. k = true;
  251. if (o == undefined || $.trim(o).length == 0) {
  252. return false
  253. }
  254. $(".J_menuTab").each(function() {
  255. if ($(this).data("id") == o) {
  256. if (!$(this).hasClass("active")) {
  257. $(this).addClass("active").siblings(".J_menuTab").removeClass("active");
  258. g(this);
  259. ref();
  260. $(".J_mainContent .J_iframe").each(function() {
  261. if ($(this).data("id") == o) {
  262. $(this).show().siblings(".J_iframe").hide();
  263. $(this).attr('src',o);
  264. return false
  265. }
  266. })
  267. }
  268. k = false;
  269. return false
  270. }
  271. });
  272. if (k) {
  273. var p = '<a href="javascript:;" class="active J_menuTab" data-id="' + o + '">' + l + ' <i class="fa fa-times-circle"></i></a>';
  274. $(".J_menuTab").removeClass("active");
  275. var n = '<iframe class="J_iframe" name="iframe' + m + '" width="100%" height="100%" src="' + o + '" frameborder="0" data-id="' + o + '" seamless></iframe>';
  276. $(".J_mainContent").find("iframe.J_iframe").hide().parents(".J_mainContent").append(n);
  277. $(".J_menuTabs .page-tabs-content").append(p);
  278. g($(".J_menuTab.active"))
  279. }
  280. return false
  281. }
  282. });