contabs.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. $(function () {
  2. //计算元素集合的总宽度
  3. function calSumWidth(elements) {
  4. var width = 0;
  5. $(elements).each(function () {
  6. width += $(this).outerWidth(true);
  7. });
  8. return width;
  9. }
  10. //滚动到指定选项卡
  11. function scrollToTab(element) {
  12. var marginLeftVal = calSumWidth($(element).prevAll()), marginRightVal = calSumWidth($(element).nextAll());
  13. // 可视区域非tab宽度
  14. var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".J_menuTabs"));
  15. //可视区域tab宽度
  16. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  17. //实际滚动宽度
  18. var scrollVal = 0;
  19. if ($(".page-tabs-content").outerWidth() < visibleWidth) {
  20. scrollVal = 0;
  21. } else if (marginRightVal <= (visibleWidth - $(element).outerWidth(true) - $(element).next().outerWidth(true))) {
  22. if ((visibleWidth - $(element).next().outerWidth(true)) > marginRightVal) {
  23. scrollVal = marginLeftVal;
  24. var tabElement = element;
  25. while ((scrollVal - $(tabElement).outerWidth()) > ($(".page-tabs-content").outerWidth() - visibleWidth)) {
  26. scrollVal -= $(tabElement).prev().outerWidth();
  27. tabElement = $(tabElement).prev();
  28. }
  29. }
  30. } else if (marginLeftVal > (visibleWidth - $(element).outerWidth(true) - $(element).prev().outerWidth(true))) {
  31. scrollVal = marginLeftVal - $(element).prev().outerWidth(true);
  32. }
  33. $('.page-tabs-content').animate({
  34. marginLeft: 0 - scrollVal + 'px'
  35. }, "fast");
  36. }
  37. //查看左侧隐藏的选项卡
  38. function scrollTabLeft() {
  39. var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
  40. // 可视区域非tab宽度
  41. var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".J_menuTabs"));
  42. //可视区域tab宽度
  43. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  44. //实际滚动宽度
  45. var scrollVal = 0;
  46. if ($(".page-tabs-content").width() < visibleWidth) {
  47. return false;
  48. } else {
  49. var tabElement = $(".J_menuTab:first");
  50. var offsetVal = 0;
  51. while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) {//找到离当前tab最近的元素
  52. offsetVal += $(tabElement).outerWidth(true);
  53. tabElement = $(tabElement).next();
  54. }
  55. offsetVal = 0;
  56. if (calSumWidth($(tabElement).prevAll()) > visibleWidth) {
  57. while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
  58. offsetVal += $(tabElement).outerWidth(true);
  59. tabElement = $(tabElement).prev();
  60. }
  61. scrollVal = calSumWidth($(tabElement).prevAll());
  62. }
  63. }
  64. $('.page-tabs-content').animate({
  65. marginLeft: 0 - scrollVal + 'px'
  66. }, "fast");
  67. }
  68. //查看右侧隐藏的选项卡
  69. function scrollTabRight() {
  70. var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
  71. // 可视区域非tab宽度
  72. var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".J_menuTabs"));
  73. //可视区域tab宽度
  74. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  75. //实际滚动宽度
  76. var scrollVal = 0;
  77. if ($(".page-tabs-content").width() < visibleWidth) {
  78. return false;
  79. } else {
  80. var tabElement = $(".J_menuTab:first");
  81. var offsetVal = 0;
  82. while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) {//找到离当前tab最近的元素
  83. offsetVal += $(tabElement).outerWidth(true);
  84. tabElement = $(tabElement).next();
  85. }
  86. offsetVal = 0;
  87. while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
  88. offsetVal += $(tabElement).outerWidth(true);
  89. tabElement = $(tabElement).next();
  90. }
  91. scrollVal = calSumWidth($(tabElement).prevAll());
  92. if (scrollVal > 0) {
  93. $('.page-tabs-content').animate({
  94. marginLeft: 0 - scrollVal + 'px'
  95. }, "fast");
  96. }
  97. }
  98. }
  99. //通过遍历给菜单项加上data-index属性
  100. $(".J_menuItem").each(function (index) {
  101. if (!$(this).attr('data-index')) {
  102. $(this).attr('data-index', index);
  103. }
  104. });
  105. function menuItem() {
  106. // 获取标识数据
  107. var dataUrl = $(this).attr('href'),
  108. dataIndex = $(this).data('index'),
  109. menuName = $.trim($(this).text()),
  110. flag = true;
  111. if (dataUrl == undefined || $.trim(dataUrl).length == 0)return false;
  112. // 选项卡菜单已存在
  113. $('.J_menuTab').each(function () {
  114. if ($(this).data('id') == dataUrl) {
  115. if (!$(this).hasClass('active')) {
  116. $(this).addClass('active').siblings('.J_menuTab').removeClass('active');
  117. scrollToTab(this);
  118. // 显示tab对应的内容区
  119. $('.J_mainContent .J_iframe').each(function () {
  120. if ($(this).data('id') == dataUrl) {
  121. $(this).show().siblings('.J_iframe').hide();
  122. return false;
  123. }
  124. });
  125. }
  126. flag = false;
  127. return false;
  128. }
  129. });
  130. // 选项卡菜单不存在
  131. if (flag) {
  132. var str = '<a href="javascript:;" class="active J_menuTab" data-id="' + dataUrl + '">' + menuName + ' <i class="fa fa-times-circle"></i></a>';
  133. $('.J_menuTab').removeClass('active');
  134. // 添加选项卡对应的iframe
  135. var str1 = '<iframe class="J_iframe" name="iframe' + dataIndex + '" width="100%" height="100%" src="' + dataUrl + '" frameborder="0" data-id="' + dataUrl + '" seamless></iframe>';
  136. $('.J_mainContent').find('iframe.J_iframe').hide().parents('.J_mainContent').append(str1);
  137. //显示loading提示
  138. // var loading = layer.load();
  139. //
  140. // $('.J_mainContent iframe:visible').load(function () {
  141. // //iframe加载完成后隐藏loading提示
  142. // layer.close(loading);
  143. // });
  144. // 添加选项卡
  145. $('.J_menuTabs .page-tabs-content').append(str);
  146. scrollToTab($('.J_menuTab.active'));
  147. }
  148. return false;
  149. }
  150. $('.J_menuItem').on('click', menuItem);
  151. // 关闭选项卡菜单
  152. function closeTab() {
  153. var closeTabId = $(this).parents('.J_menuTab').data('id');
  154. var currentWidth = $(this).parents('.J_menuTab').width();
  155. // 当前元素处于活动状态
  156. if ($(this).parents('.J_menuTab').hasClass('active')) {
  157. // 当前元素后面有同辈元素,使后面的一个元素处于活动状态
  158. if ($(this).parents('.J_menuTab').next('.J_menuTab').size()) {
  159. var activeId = $(this).parents('.J_menuTab').next('.J_menuTab:eq(0)').data('id');
  160. $(this).parents('.J_menuTab').next('.J_menuTab:eq(0)').addClass('active');
  161. $('.J_mainContent .J_iframe').each(function () {
  162. if ($(this).data('id') == activeId) {
  163. $(this).show().siblings('.J_iframe').hide();
  164. return false;
  165. }
  166. });
  167. var marginLeftVal = parseInt($('.page-tabs-content').css('margin-left'));
  168. if (marginLeftVal < 0) {
  169. $('.page-tabs-content').animate({
  170. marginLeft: (marginLeftVal + currentWidth) + 'px'
  171. }, "fast");
  172. }
  173. // 移除当前选项卡
  174. $(this).parents('.J_menuTab').remove();
  175. // 移除tab对应的内容区
  176. $('.J_mainContent .J_iframe').each(function () {
  177. if ($(this).data('id') == closeTabId) {
  178. $(this).remove();
  179. return false;
  180. }
  181. });
  182. }
  183. // 当前元素后面没有同辈元素,使当前元素的上一个元素处于活动状态
  184. if ($(this).parents('.J_menuTab').prev('.J_menuTab').size()) {
  185. var activeId = $(this).parents('.J_menuTab').prev('.J_menuTab:last').data('id');
  186. $(this).parents('.J_menuTab').prev('.J_menuTab:last').addClass('active');
  187. $('.J_mainContent .J_iframe').each(function () {
  188. if ($(this).data('id') == activeId) {
  189. $(this).show().siblings('.J_iframe').hide();
  190. return false;
  191. }
  192. });
  193. // 移除当前选项卡
  194. $(this).parents('.J_menuTab').remove();
  195. // 移除tab对应的内容区
  196. $('.J_mainContent .J_iframe').each(function () {
  197. if ($(this).data('id') == closeTabId) {
  198. $(this).remove();
  199. return false;
  200. }
  201. });
  202. }
  203. }
  204. // 当前元素不处于活动状态
  205. else {
  206. // 移除当前选项卡
  207. $(this).parents('.J_menuTab').remove();
  208. // 移除相应tab对应的内容区
  209. $('.J_mainContent .J_iframe').each(function () {
  210. if ($(this).data('id') == closeTabId) {
  211. $(this).remove();
  212. return false;
  213. }
  214. });
  215. scrollToTab($('.J_menuTab.active'));
  216. }
  217. return false;
  218. }
  219. $('.J_menuTabs').on('click', '.J_menuTab i', closeTab);
  220. // 关闭当前选项卡
  221. function tabCloseCurrent() {
  222. $('.page-tabs-content').find('.active i').trigger("click");
  223. }
  224. //关闭其他选项卡
  225. function closeOtherTabs(){
  226. $('.page-tabs-content').children("[data-id]").not(":first").not(".active").each(function () {
  227. $('.J_iframe[data-id="' + $(this).data('id') + '"]').remove();
  228. $(this).remove();
  229. });
  230. $('.page-tabs-content').css("margin-left", "0");
  231. }
  232. $('.J_tabCloseOther').on('click', closeOtherTabs);
  233. //滚动到已激活的选项卡
  234. function showActiveTab(){
  235. scrollToTab($('.J_menuTab.active'));
  236. }
  237. $('.J_tabShowActive').on('click', showActiveTab);
  238. // 点击选项卡菜单
  239. function activeTab() {
  240. if (!$(this).hasClass('active')) {
  241. var currentId = $(this).data('id');
  242. // 显示tab对应的内容区
  243. $('.J_mainContent .J_iframe').each(function () {
  244. if ($(this).data('id') == currentId) {
  245. $(this).show().siblings('.J_iframe').hide();
  246. return false;
  247. }
  248. });
  249. $(this).addClass('active').siblings('.J_menuTab').removeClass('active');
  250. scrollToTab(this);
  251. }
  252. }
  253. $('.J_menuTabs').on('click', '.J_menuTab', activeTab);
  254. //刷新iframe
  255. function refreshTab() {
  256. var currentId = $('.page-tabs-content').find('.active').attr('data-id');
  257. var target = $('.J_iframe[data-id="' + currentId + '"]');
  258. var url = target.attr('src');
  259. target.attr('src', url).ready();
  260. }
  261. $('.J_menuTabs').on('dblclick', '.J_menuTab', refreshTab);
  262. // 页签刷新按钮
  263. $('.tabReload').on('click', refreshTab);
  264. // 左移按扭
  265. $('.J_tabLeft').on('click', scrollTabLeft);
  266. // 右移按扭
  267. $('.J_tabRight').on('click', scrollTabRight);
  268. // 关闭当前
  269. $('.tabCloseCurrent').on('click', tabCloseCurrent);
  270. // 关闭全部
  271. $('.J_tabCloseAll').on('click', function () {
  272. $('.page-tabs-content').children("[data-id]").not(":first").each(function () {
  273. $('.J_iframe[data-id="' + $(this).data('id') + '"]').remove();
  274. $(this).remove();
  275. });
  276. $('.page-tabs-content').children("[data-id]:first").each(function () {
  277. $('.J_iframe[data-id="' + $(this).data('id') + '"]').show();
  278. $(this).addClass("active");
  279. });
  280. $('.page-tabs-content').css("margin-left", "0");
  281. });
  282. // 右键菜单实现
  283. $.contextMenu({
  284. selector: ".J_menuTab",
  285. trigger: 'right',
  286. autoHide: true,
  287. items: {
  288. "close_current": {
  289. name: "关闭当前",
  290. callback: function(key, opt) {
  291. opt.$trigger.find('i').trigger("click");
  292. }
  293. },
  294. "close_other": {
  295. name: "关闭其他",
  296. callback: function(key, opt) {
  297. $(".J_tabCloseOther").trigger("click");
  298. }
  299. },
  300. "close_all": {
  301. name: "全部关闭",
  302. callback: function(key, opt) {
  303. $('.J_tabCloseAll').trigger("click");
  304. }
  305. },
  306. }
  307. })
  308. });