header.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
  6. <title>爱奇工具箱-实用、有趣的工具合集,方便协助工作和生活</title>
  7. <meta name="description" content="实用、有趣的工具合集,方便协助工作和生活" />
  8. <meta name="keywords" content="JSON,JSON 校验,格式化,xml转json,在线工具,json视图,可视化,程序,服务器,域名注册,正则表达式,测试,在线json格式化工具,json格式化工具,json字符串格式化,json tools online,在线文字对比工具,json解析,JSON,JSON格式化,JSON解析,爱奇工具,i7box,i7tools" />
  9. <link rel="icon" href="__IBOXS__/picture/favicon.png" type="image/x-icon">
  10. <link rel="stylesheet" type="text/css" href="__IBOXS__/css/bootstrap.min.css">
  11. <link rel="stylesheet" type="text/css" href="__IBOXS__/css/font-awesome.min.css">
  12. <link rel="stylesheet" type="text/css" href="__IBOXS__/css/style.min.css">
  13. <script type="text/javascript" src="__IBOXS__/js/jquery.min.js"></script>
  14. <script type="text/javascript" src="__IBOXS__/js/clipboard.min.js"></script>
  15. <script type="text/javascript" src="__IBOXS__/js/bootstrap.min.js"></script>
  16. <script type="text/javascript" src="__IBOXS__/js/main.js"></script>
  17. <script type="text/javascript" src="__IBOXS__/js/script.min.js"></script>
  18. <script type="text/javascript" src="__IBOXS__/js/custom.js"></script>
  19. <!-- layui -->
  20. <link rel="stylesheet" href="/static/admin/layui2.5.6/layui.css" media="all">
  21. <script src="/static/admin/layui2.5.6/layui.js"></script>
  22. <script>
  23. var _hmt = _hmt || [];
  24. (function () {
  25. var hm = document.createElement("script");
  26. hm.src = "https://hm.baidu.com/hm.js?e4f8b8f43d92548ada77b92c1a1c57ee";
  27. var s = document.getElementsByTagName("script")[0];
  28. s.parentNode.insertBefore(hm, s);
  29. })();
  30. var scrolltotop={
  31. setting:{
  32. startline:100,
  33. scrollto:0,
  34. scrollduration:400,
  35. fadeduration:[500,100]
  36. },
  37. controlHTML:'<i class="fa fa-chevron-up" aria-hidden="true"></i>',
  38. controlattrs:{offsetx:40,offsety:50},
  39. anchorkeyword:"#top",
  40. state:{
  41. isvisible:false,
  42. shouldvisible:false
  43. },scrollup:function(){
  44. if(!this.cssfixedsupport){
  45. this.$control.css({opacity:0});
  46. }
  47. var dest=isNaN(this.setting.scrollto)?this.setting.scrollto:parseInt(this.setting.scrollto);
  48. if(typeof dest=="string"&&jQuery("#"+dest).length==1){
  49. dest=jQuery("#"+dest).offset().top;
  50. }else{
  51. dest=0;
  52. }
  53. this.$body.animate({scrollTop:dest},this.setting.scrollduration);
  54. },keepfixed:function(){
  55. var $window=jQuery(window);
  56. var controlx=$window.scrollLeft()+$window.width()-this.$control.width()-this.controlattrs.offsetx;
  57. var controly=$window.scrollTop()+$window.height()-this.$control.height()-this.controlattrs.offsety;
  58. this.$control.css({left:controlx+"px",top:controly+"px"});
  59. },togglecontrol:function(){
  60. var scrolltop=jQuery(window).scrollTop();
  61. if(!this.cssfixedsupport){
  62. this.keepfixed();
  63. }
  64. this.state.shouldvisible=(scrolltop>=this.setting.startline)?true:false;
  65. if(this.state.shouldvisible&&!this.state.isvisible){
  66. this.$control.stop().animate({opacity:1},this.setting.fadeduration[0]);
  67. this.state.isvisible=true;
  68. }else{
  69. if(this.state.shouldvisible==false&&this.state.isvisible){
  70. this.$control.stop().animate({opacity:0},this.setting.fadeduration[1]);
  71. this.state.isvisible=false;
  72. }
  73. }
  74. },init:function(){
  75. jQuery(document).ready(function($){
  76. var mainobj=scrolltotop;
  77. var iebrws=document.all;
  78. mainobj.cssfixedsupport=!iebrws||iebrws&&document.compatMode=="CSS1Compat"&&window.XMLHttpRequest;
  79. mainobj.$body=(window.opera)?(document.compatMode=="CSS1Compat"?$("html"):$("body")):$("html,body");
  80. mainobj.$control=$('<div class="runtop">'+mainobj.controlHTML+"</div>").css({position:mainobj.cssfixedsupport?"fixed":"absolute",bottom:mainobj.controlattrs.offsety,right:mainobj.controlattrs.offsetx,opacity:0,cursor:"pointer"}).attr({title:"返回顶部"}).click(function(){mainobj.scrollup();return false;}).appendTo("body");if(document.all&&!window.XMLHttpRequest&&mainobj.$control.text()!=""){mainobj.$control.css({width:mainobj.$control.width()});}mainobj.togglecontrol();
  81. $('a[href="'+mainobj.anchorkeyword+'"]').click(function(){mainobj.scrollup();return false;});
  82. $(window).bind("scroll resize",function(e){mainobj.togglecontrol();});
  83. });
  84. }
  85. };
  86. scrolltotop.init();
  87. </script>
  88. <!-- <script async src="__IBOXS__/js/adsbygoogle.js"></script> -->
  89. <script data-ad-client="ca-pub-1101808529197281" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  90. <style type="text/css">
  91. /*正文样式*/
  92. body {
  93. font-family: "HanHei SC", "PingHei", "PingFang SC", "微软雅黑", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  94. font-size: 13px;
  95. line-height: 1.846;
  96. color: #666666;
  97. }
  98. /*主体头部空*/
  99. .clearfix {
  100. margin-top: 40px;
  101. }
  102. /*返回内容设为隐藏*/
  103. .form-controls {
  104. display: none;
  105. }
  106. #form1 {
  107. text-align: center;
  108. display: none;
  109. }
  110. .Explain {
  111. padding-top: 10px;
  112. }
  113. /*首行缩进2个字符*/
  114. .Explain dd {
  115. text-indent: 2em;
  116. }
  117. /*主体底部边距*/
  118. .clearfix {
  119. min-height: 550px;
  120. }
  121. /*表格文字缩小*/
  122. .position {
  123. font-size: xx-small;
  124. }
  125. /*表格文字自动换行*/
  126. .table-bordered {
  127. word-break: break-all;
  128. word-wrap: break-all;
  129. }
  130. .tooltip {
  131. font-size: 12px;
  132. position: absolute;
  133. padding: 5px;
  134. z-index: 100000;
  135. opacity: .8;
  136. font-family: Microsoft Yahei
  137. }
  138. .tipsy-arrow {
  139. position: absolute;
  140. width: 0;
  141. height: 0;
  142. line-height: 0;
  143. border: 6px dashed #000;
  144. top: 0;
  145. left: 20%;
  146. margin-left: -5px;
  147. border-bottom-style: solid;
  148. border-top: 0;
  149. border-left-color: transparent;
  150. border-right-color: transparent
  151. }
  152. .tipsy-arrow-n {
  153. border-bottom-color: #6F8EC5
  154. }
  155. .tipsy-inner {
  156. background-color: #6F8EC5;
  157. color: #FFF;
  158. max-width: 200px;
  159. padding: 5px 8px 4px 8px;
  160. text-align: center;
  161. border-radius: 3px
  162. }
  163. @media screen and (min-width: 760px) {
  164. .header_nav {
  165. display: none;
  166. }
  167. }
  168. #f_list {
  169. position: fixed;
  170. right: 30px;
  171. bottom: 60px;
  172. transition: bottom ease .3s;
  173. z-index: 9;
  174. font-size: 18px;
  175. text-align: center;
  176. line-height: 36px
  177. }
  178. #f_list a.btn {
  179. width: 36px;
  180. height: 36px;
  181. display: block;
  182. text-decoration: none;
  183. color: #999;
  184. border-radius: 5px
  185. }
  186. @media screen and (max-width: 720px) {
  187. #f_list {
  188. right: 0px;
  189. }
  190. }
  191. .centent {
  192. min-height: 500px;
  193. }
  194. /*logo居中*/
  195. @media screen and (min-width: 768px) {
  196. .navbar-header {
  197. position: absolute;
  198. top: 50%;
  199. transform: translateY(-50%);
  200. }
  201. }
  202. .search {
  203. padding-left: 5px;
  204. }
  205. .btn, .btn:hover {
  206. transition: all 0.5s linear;
  207. }
  208. </style>
  209. </head>
  210. <body>
  211. <main class="main">
  212. <div class="main-inner">
  213. <!--[if lt IE 9]>
  214. <div class="notice chromeframe">您的浏览器版本<strong>太旧了</strong>,为了正常地访问网站,请升级您的浏览器 <a target="_blank"
  215. href="http://browsehappy.com">立即升级</a>
  216. </div>
  217. <![endif]-->
  218. <header class="header">
  219. <nav class="header-fixed">
  220. <div class="container">
  221. <div class="row flex-nowrap align-items-center justify-content-between">
  222. <div class="col-auto d-block d-lg-none header-fixed-col">
  223. <div class="main-mnu-btn">
  224. <span class="bar bar-1"></span>
  225. <span class="bar bar-2"></span>
  226. <span class="bar bar-3"></span>
  227. <span class="bar bar-4"></span>
  228. </div>
  229. </div>
  230. <div class="col-auto header-fixed-col">
  231. <a href="{:url('Base/alls')}" class="logo logo-ico-widht-text" title="极风游科技出品">
  232. <img class="lazy logo-ico" data-src="__IBOXS__/picture/favicon.png" width="36" height="35" src="__IBOXS__/picture/favicon.png" alt="">
  233. <span class="logo-text">爱奇工具箱</span>
  234. </a>
  235. </div>
  236. </div>
  237. </div>
  238. </nav>
  239. </header>
  240. <link rel="stylesheet" type="text/css" href="__IBOXS__/css/templates.css">
  241. <link rel="stylesheet" type="text/css" href="__IBOXS__/css/bootstrap-select.min.css">
  242. <script src="__IBOXS__/js/bootstrap-select.min.js"></script>
  243. <style type="text/css">
  244. .breadcrumb {
  245. padding: 8px 15px 13px 15px;
  246. line-height: 36px;
  247. }
  248. .breadcrumb > li {
  249. margin-top: 6px;
  250. }
  251. .breadcrumb > .active, .breadcrumb > .active > a{
  252. color: #2c7ae7!important;
  253. font-weight: bold;
  254. }
  255. .tools_list {
  256. min-height: 500px;
  257. }
  258. .breadcrumb.top-section{background: #fff;}
  259. .breadcrumb.top-section>img {
  260. width: 20px;
  261. height: 20px;
  262. position: absolute;
  263. margin-top: 13px;
  264. }
  265. .breadcrumb.top-section li.no-first-bar{
  266. margin-top: 0;
  267. margin-left: 24px;
  268. }
  269. .breadcrumb.top-section li:nth-child(3):before{
  270. content: "";
  271. }
  272. .servises-item-desc a {
  273. text-decoration: none;
  274. }
  275. .servises-item:hover .servises-item-desc a {
  276. color: white;
  277. }
  278. </style>
  279. <div class="container centent" style="padding-bottom:20px;">
  280. <div class="row">
  281. {volist name="tags" id="vo"}
  282. <ol class="breadcrumb col-sm-12 top-section" >
  283. {if condition="$vo['tagname'] eq '热门' "}
  284. <img src="/static/admin/images/fire.png"><li class="no-first-bar" style="color: #EF5350;">{$vo.tagname}</li>
  285. {elseif condition="$vo['tagname'] eq '推荐' "}
  286. <img src="/static/admin/images/zan.png"><li class="no-first-bar" style="color: #4FC3F7;">{$vo.tagname}</li>
  287. {elseif condition="$vo['tagname'] eq 'PDF' "}
  288. <img src="/static/admin/images/pdf.png"><li class="no-first-bar" style="color: #FF5722;">{$vo.tagname}</li>
  289. {elseif condition="$vo['tagname'] eq '开发' "}
  290. <img src="/static/admin/images/jt.png"><li class="no-first-bar" style="color: #EC407A;">{$vo.tagname}</li>
  291. {/if}
  292. {volist name="vo['children']" id="v"}
  293. &nbsp;&nbsp;<li><a href="{:url('Index/title',['id'=>$v.id])}">{$v.title}</a></li>
  294. {/volist}
  295. </ol>
  296. {/volist}
  297. <ol class="breadcrumb col-sm-12 col-auto item nav-list" id="choose-tool">
  298. <li><a href="{:url('Base/alls')}">所有工具</a></li>
  299. {volist name="data" id="vo"}
  300. <li>
  301. <a href="{:url('index/index',['column_id'=>$vo.id])}" >{$vo.catename}</a>
  302. </li>
  303. {/volist}
  304. </ol>
  305. <script type="text/javascript">
  306. var isRootView = true;
  307. //解决a标签带超链接,点击跳转显示高亮颜色
  308. $('#choose-tool li a').each(function() {
  309. if ($($(this))[0].href == String(window.location)) {
  310. $(this).parent().addClass('active');
  311. isRootView = false;
  312. } else if($($(this))[0].href.indexOf('.html') > -1) {
  313. $(this).parent().removeClass('active');
  314. }
  315. });
  316. //默认选中第一个“所有类别”
  317. if(isRootView)
  318. $('#choose-tool li:eq(0)').addClass('active');
  319. </script>
  320. </div>
  321. </body>
  322. </html>