header.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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="爱奇工具" />
  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>
  90. (adsbygoogle = window.adsbygoogle || []).push({
  91. google_ad_client: "ca-pub-1101808529197281",
  92. enable_page_level_ads: true
  93. });
  94. </script>
  95. <style type="text/css">
  96. /*正文样式*/
  97. body {
  98. font-family: "HanHei SC", "PingHei", "PingFang SC", "微软雅黑", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  99. font-size: 13px;
  100. line-height: 1.846;
  101. color: #666666;
  102. }
  103. /*主体头部空*/
  104. .clearfix {
  105. margin-top: 40px;
  106. }
  107. /*返回内容设为隐藏*/
  108. .form-controls {
  109. display: none;
  110. }
  111. #form1 {
  112. text-align: center;
  113. display: none;
  114. }
  115. .Explain {
  116. padding-top: 10px;
  117. }
  118. /*首行缩进2个字符*/
  119. .Explain dd {
  120. text-indent: 2em;
  121. }
  122. /*主体底部边距*/
  123. .clearfix {
  124. min-height: 550px;
  125. }
  126. /*表格文字缩小*/
  127. .position {
  128. font-size: xx-small;
  129. }
  130. /*表格文字自动换行*/
  131. .table-bordered {
  132. word-break: break-all;
  133. word-wrap: break-all;
  134. }
  135. .tooltip {
  136. font-size: 12px;
  137. position: absolute;
  138. padding: 5px;
  139. z-index: 100000;
  140. opacity: .8;
  141. font-family: Microsoft Yahei
  142. }
  143. .tipsy-arrow {
  144. position: absolute;
  145. width: 0;
  146. height: 0;
  147. line-height: 0;
  148. border: 6px dashed #000;
  149. top: 0;
  150. left: 20%;
  151. margin-left: -5px;
  152. border-bottom-style: solid;
  153. border-top: 0;
  154. border-left-color: transparent;
  155. border-right-color: transparent
  156. }
  157. .tipsy-arrow-n {
  158. border-bottom-color: #6F8EC5
  159. }
  160. .tipsy-inner {
  161. background-color: #6F8EC5;
  162. color: #FFF;
  163. max-width: 200px;
  164. padding: 5px 8px 4px 8px;
  165. text-align: center;
  166. border-radius: 3px
  167. }
  168. @media screen and (min-width: 760px) {
  169. .header_nav {
  170. display: none;
  171. }
  172. }
  173. #f_list {
  174. position: fixed;
  175. right: 30px;
  176. bottom: 60px;
  177. transition: bottom ease .3s;
  178. z-index: 9;
  179. font-size: 18px;
  180. text-align: center;
  181. line-height: 36px
  182. }
  183. #f_list a.btn {
  184. width: 36px;
  185. height: 36px;
  186. display: block;
  187. text-decoration: none;
  188. color: #999;
  189. border-radius: 5px
  190. }
  191. @media screen and (max-width: 720px) {
  192. #f_list {
  193. right: 0px;
  194. }
  195. }
  196. .centent {
  197. min-height: 500px;
  198. }
  199. /*logo居中*/
  200. @media screen and (min-width: 768px) {
  201. .navbar-header {
  202. position: absolute;
  203. top: 50%;
  204. transform: translateY(-50%);
  205. }
  206. }
  207. .search {
  208. padding-left: 5px;
  209. }
  210. .btn, .btn:hover {
  211. transition: all 0.5s linear;
  212. }
  213. </style>
  214. </head>
  215. <body>
  216. <main class="main">
  217. <div class="main-inner">
  218. <!--[if lt IE 9]>
  219. <div class="notice chromeframe">您的浏览器版本<strong>太旧了</strong>,为了正常地访问网站,请升级您的浏览器 <a target="_blank"
  220. href="http://browsehappy.com">立即升级</a>
  221. </div>
  222. <![endif]-->
  223. <header class="header">
  224. <nav class="header-fixed">
  225. <div class="container">
  226. <div class="row flex-nowrap align-items-center justify-content-between">
  227. <div class="col-auto d-block d-lg-none header-fixed-col">
  228. <div class="main-mnu-btn">
  229. <span class="bar bar-1"></span>
  230. <span class="bar bar-2"></span>
  231. <span class="bar bar-3"></span>
  232. <span class="bar bar-4"></span>
  233. </div>
  234. </div>
  235. <div class="col-auto header-fixed-col">
  236. <a href="{:url('Base/alls')}" class="logo logo-ico-widht-text" title="极风游科技出品">
  237. <img class="lazy logo-ico" data-src="__IBOXS__/picture/favicon.png" width="36" height="35" src="__IBOXS__/picture/favicon.png" alt="">
  238. <span class="logo-text">爱奇工具箱</span>
  239. </a>
  240. </div>
  241. </div>
  242. </div>
  243. </nav>
  244. </header>
  245. <link rel="stylesheet" type="text/css" href="__IBOXS__/css/templates.css">
  246. <link rel="stylesheet" type="text/css" href="__IBOXS__/css/bootstrap-select.min.css">
  247. <script src="__IBOXS__/js/bootstrap-select.min.js"></script>
  248. <style type="text/css">
  249. .breadcrumb {
  250. padding: 8px 15px 13px 15px;
  251. line-height: 36px;
  252. }
  253. .breadcrumb > li {
  254. margin-top: 6px;
  255. }
  256. .breadcrumb > .active, .breadcrumb > .active > a{
  257. color: #2c7ae7!important;
  258. font-weight: bold;
  259. }
  260. .tools_list {
  261. min-height: 500px;
  262. }
  263. .breadcrumb.top-section{background: #fff;}
  264. .breadcrumb.top-section>img {
  265. width: 20px;
  266. height: 20px;
  267. position: absolute;
  268. margin-top: 13px;
  269. }
  270. .breadcrumb.top-section li.no-first-bar{
  271. margin-top: 0;
  272. margin-left: 24px;
  273. }
  274. .breadcrumb.top-section li:nth-child(3):before{
  275. content: "";
  276. }
  277. .servises-item-desc a {
  278. text-decoration: none;
  279. }
  280. .servises-item:hover .servises-item-desc a {
  281. color: white;
  282. }
  283. </style>
  284. <div class="container centent" style="padding-bottom:20px;">
  285. <div class="row">
  286. {volist name="tags" id="vo"}
  287. <ol class="breadcrumb col-sm-12 top-section" >
  288. {if condition="$vo['tagname'] eq '热门' "}
  289. <img src="/static/admin/images/fire.png"><li class="no-first-bar" style="color: #EF5350;">{$vo.tagname}</li>
  290. {elseif condition="$vo['tagname'] eq '推荐' "}
  291. <img src="/static/admin/images/zan.png"><li class="no-first-bar" style="color: #4FC3F7;">{$vo.tagname}</li>
  292. {elseif condition="$vo['tagname'] eq 'PDF' "}
  293. <img src="/static/admin/images/pdf.png"><li class="no-first-bar" style="color: #FF5722;">{$vo.tagname}</li>
  294. {elseif condition="$vo['tagname'] eq '开发' "}
  295. <img src="/static/admin/images/jt.png"><li class="no-first-bar" style="color: #EC407A;">{$vo.tagname}</li>
  296. {/if}
  297. {volist name="vo['children']" id="v"}
  298. &nbsp;&nbsp;<li><a href="{:url('Index/title',['id'=>$v.id])}">{$v.title}</a></li>
  299. {/volist}
  300. </ol>
  301. {/volist}
  302. <ol class="breadcrumb col-sm-12 col-auto item nav-list" id="choose-tool">
  303. <li><a href="{:url('Base/alls')}">所有工具</a></li>
  304. {volist name="data" id="vo"}
  305. <li>
  306. <a href="{:url('index/index',['column_id'=>$vo.id])}" >{$vo.catename}</a>
  307. </li>
  308. {/volist}
  309. </ol>
  310. <script type="text/javascript">
  311. var isRootView = true;
  312. //解决a标签带超链接,点击跳转显示高亮颜色
  313. $('#choose-tool li a').each(function() {
  314. if ($($(this))[0].href == String(window.location)) {
  315. $(this).parent().addClass('active');
  316. isRootView = false;
  317. } else if($($(this))[0].href.indexOf('.html') > -1) {
  318. $(this).parent().removeClass('active');
  319. }
  320. });
  321. //默认选中第一个“所有类别”
  322. if(isRootView)
  323. $('#choose-tool li:eq(0)').addClass('active');
  324. </script>
  325. </div>
  326. </body>
  327. </html>