|
@@ -0,0 +1,372 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html>
|
|
|
+<head>
|
|
|
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
+<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
|
|
|
+<title>爱奇工具箱-实用、有趣的工具合集,方便协助工作和生活</title>
|
|
|
+<meta name="description" content="实用、有趣的工具合集,方便协助工作和生活" />
|
|
|
+<meta name="keywords" content="爱奇工具" />
|
|
|
+<link rel="icon" href="__IBOXS__/picture/favicon.png" type="image/x-icon">
|
|
|
+<link rel="stylesheet" type="text/css" href="__IBOXS__/css/bootstrap.min.css">
|
|
|
+<link rel="stylesheet" type="text/css" href="__IBOXS__/css/font-awesome.min.css">
|
|
|
+<link rel="stylesheet" type="text/css" href="__IBOXS__/css/style.min.css">
|
|
|
+<script type="text/javascript" src="__IBOXS__/js/jquery.min.js"></script>
|
|
|
+<script type="text/javascript" src="__IBOXS__/js/clipboard.min.js"></script>
|
|
|
+<script type="text/javascript" src="__IBOXS__/js/bootstrap.min.js"></script>
|
|
|
+
|
|
|
+<script type="text/javascript" src="__IBOXS__/js/main.js"></script>
|
|
|
+<script type="text/javascript" src="__IBOXS__/js/script.min.js"></script>
|
|
|
+<script type="text/javascript" src="__IBOXS__/js/custom.js"></script>
|
|
|
+
|
|
|
+<!-- layui -->
|
|
|
+<link rel="stylesheet" href="/static/admin/layui2.5.6/layui.css" media="all">
|
|
|
+<script src="/static/admin/layui2.5.6/layui.js"></script>
|
|
|
+
|
|
|
+
|
|
|
+<script>
|
|
|
+ var _hmt = _hmt || [];
|
|
|
+ (function () {
|
|
|
+ var hm = document.createElement("script");
|
|
|
+ hm.src = "https://hm.baidu.com/hm.js?e4f8b8f43d92548ada77b92c1a1c57ee";
|
|
|
+ var s = document.getElementsByTagName("script")[0];
|
|
|
+ s.parentNode.insertBefore(hm, s);
|
|
|
+ })();
|
|
|
+
|
|
|
+ var scrolltotop={
|
|
|
+ setting:{
|
|
|
+ startline:100,
|
|
|
+ scrollto:0,
|
|
|
+ scrollduration:400,
|
|
|
+ fadeduration:[500,100]
|
|
|
+ },
|
|
|
+ controlHTML:'<i class="fa fa-chevron-up" aria-hidden="true"></i>',
|
|
|
+ controlattrs:{offsetx:40,offsety:50},
|
|
|
+ anchorkeyword:"#top",
|
|
|
+ state:{
|
|
|
+ isvisible:false,
|
|
|
+ shouldvisible:false
|
|
|
+ },scrollup:function(){
|
|
|
+ if(!this.cssfixedsupport){
|
|
|
+ this.$control.css({opacity:0});
|
|
|
+ }
|
|
|
+ var dest=isNaN(this.setting.scrollto)?this.setting.scrollto:parseInt(this.setting.scrollto);
|
|
|
+ if(typeof dest=="string"&&jQuery("#"+dest).length==1){
|
|
|
+ dest=jQuery("#"+dest).offset().top;
|
|
|
+ }else{
|
|
|
+ dest=0;
|
|
|
+ }
|
|
|
+ this.$body.animate({scrollTop:dest},this.setting.scrollduration);
|
|
|
+ },keepfixed:function(){
|
|
|
+ var $window=jQuery(window);
|
|
|
+ var controlx=$window.scrollLeft()+$window.width()-this.$control.width()-this.controlattrs.offsetx;
|
|
|
+ var controly=$window.scrollTop()+$window.height()-this.$control.height()-this.controlattrs.offsety;
|
|
|
+ this.$control.css({left:controlx+"px",top:controly+"px"});
|
|
|
+ },togglecontrol:function(){
|
|
|
+ var scrolltop=jQuery(window).scrollTop();
|
|
|
+ if(!this.cssfixedsupport){
|
|
|
+ this.keepfixed();
|
|
|
+ }
|
|
|
+ this.state.shouldvisible=(scrolltop>=this.setting.startline)?true:false;
|
|
|
+ if(this.state.shouldvisible&&!this.state.isvisible){
|
|
|
+ this.$control.stop().animate({opacity:1},this.setting.fadeduration[0]);
|
|
|
+ this.state.isvisible=true;
|
|
|
+ }else{
|
|
|
+ if(this.state.shouldvisible==false&&this.state.isvisible){
|
|
|
+ this.$control.stop().animate({opacity:0},this.setting.fadeduration[1]);
|
|
|
+ this.state.isvisible=false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },init:function(){
|
|
|
+ jQuery(document).ready(function($){
|
|
|
+ var mainobj=scrolltotop;
|
|
|
+ var iebrws=document.all;
|
|
|
+ mainobj.cssfixedsupport=!iebrws||iebrws&&document.compatMode=="CSS1Compat"&&window.XMLHttpRequest;
|
|
|
+ mainobj.$body=(window.opera)?(document.compatMode=="CSS1Compat"?$("html"):$("body")):$("html,body");
|
|
|
+ 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();
|
|
|
+ $('a[href="'+mainobj.anchorkeyword+'"]').click(function(){mainobj.scrollup();return false;});
|
|
|
+ $(window).bind("scroll resize",function(e){mainobj.togglecontrol();});
|
|
|
+ });
|
|
|
+ }
|
|
|
+ };
|
|
|
+ scrolltotop.init();
|
|
|
+ </script>
|
|
|
+<!-- <script async src="__IBOXS__/js/adsbygoogle.js"></script> -->
|
|
|
+<script>
|
|
|
+ (adsbygoogle = window.adsbygoogle || []).push({
|
|
|
+ google_ad_client: "ca-pub-1101808529197281",
|
|
|
+ enable_page_level_ads: true
|
|
|
+ });
|
|
|
+ </script>
|
|
|
+<style type="text/css">
|
|
|
+ /*正文样式*/
|
|
|
+ body {
|
|
|
+ font-family: "HanHei SC", "PingHei", "PingFang SC", "微软雅黑", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
|
|
+ font-size: 13px;
|
|
|
+ line-height: 1.846;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*主体头部空*/
|
|
|
+ .clearfix {
|
|
|
+ margin-top: 40px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*返回内容设为隐藏*/
|
|
|
+ .form-controls {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ #form1 {
|
|
|
+ text-align: center;
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .Explain {
|
|
|
+ padding-top: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*首行缩进2个字符*/
|
|
|
+ .Explain dd {
|
|
|
+ text-indent: 2em;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*主体底部边距*/
|
|
|
+ .clearfix {
|
|
|
+ min-height: 550px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*表格文字缩小*/
|
|
|
+ .position {
|
|
|
+ font-size: xx-small;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*表格文字自动换行*/
|
|
|
+ .table-bordered {
|
|
|
+ word-break: break-all;
|
|
|
+ word-wrap: break-all;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tooltip {
|
|
|
+ font-size: 12px;
|
|
|
+ position: absolute;
|
|
|
+ padding: 5px;
|
|
|
+ z-index: 100000;
|
|
|
+ opacity: .8;
|
|
|
+ font-family: Microsoft Yahei
|
|
|
+ }
|
|
|
+
|
|
|
+ .tipsy-arrow {
|
|
|
+ position: absolute;
|
|
|
+ width: 0;
|
|
|
+ height: 0;
|
|
|
+ line-height: 0;
|
|
|
+ border: 6px dashed #000;
|
|
|
+ top: 0;
|
|
|
+ left: 20%;
|
|
|
+ margin-left: -5px;
|
|
|
+ border-bottom-style: solid;
|
|
|
+ border-top: 0;
|
|
|
+ border-left-color: transparent;
|
|
|
+ border-right-color: transparent
|
|
|
+ }
|
|
|
+
|
|
|
+ .tipsy-arrow-n {
|
|
|
+ border-bottom-color: #6F8EC5
|
|
|
+ }
|
|
|
+
|
|
|
+ .tipsy-inner {
|
|
|
+ background-color: #6F8EC5;
|
|
|
+ color: #FFF;
|
|
|
+ max-width: 200px;
|
|
|
+ padding: 5px 8px 4px 8px;
|
|
|
+ text-align: center;
|
|
|
+ border-radius: 3px
|
|
|
+ }
|
|
|
+
|
|
|
+ @media screen and (min-width: 760px) {
|
|
|
+ .header_nav {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ #f_list {
|
|
|
+ position: fixed;
|
|
|
+ right: 30px;
|
|
|
+ bottom: 60px;
|
|
|
+ transition: bottom ease .3s;
|
|
|
+ z-index: 9;
|
|
|
+ font-size: 18px;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 36px
|
|
|
+ }
|
|
|
+
|
|
|
+ #f_list a.btn {
|
|
|
+ width: 36px;
|
|
|
+ height: 36px;
|
|
|
+ display: block;
|
|
|
+ text-decoration: none;
|
|
|
+ color: #999;
|
|
|
+ border-radius: 5px
|
|
|
+ }
|
|
|
+
|
|
|
+ @media screen and (max-width: 720px) {
|
|
|
+ #f_list {
|
|
|
+ right: 0px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .centent {
|
|
|
+ min-height: 500px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*logo居中*/
|
|
|
+ @media screen and (min-width: 768px) {
|
|
|
+ .navbar-header {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .search {
|
|
|
+ padding-left: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn, .btn:hover {
|
|
|
+ transition: all 0.5s linear;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+<main class="main">
|
|
|
+<div class="main-inner">
|
|
|
+<!--[if lt IE 9]>
|
|
|
+ <div class="notice chromeframe">您的浏览器版本<strong>太旧了</strong>,为了正常地访问网站,请升级您的浏览器 <a target="_blank"
|
|
|
+ href="http://browsehappy.com">立即升级</a>
|
|
|
+ </div>
|
|
|
+ <![endif]-->
|
|
|
+
|
|
|
+<header class="header">
|
|
|
+
|
|
|
+<nav class="header-fixed">
|
|
|
+<div class="container">
|
|
|
+<div class="row flex-nowrap align-items-center justify-content-between">
|
|
|
+<div class="col-auto d-block d-lg-none header-fixed-col">
|
|
|
+<div class="main-mnu-btn">
|
|
|
+<span class="bar bar-1"></span>
|
|
|
+<span class="bar bar-2"></span>
|
|
|
+<span class="bar bar-3"></span>
|
|
|
+<span class="bar bar-4"></span>
|
|
|
+</div>
|
|
|
+</div>
|
|
|
+<div class="col-auto header-fixed-col">
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+<a href="{:url('Base/alls')}" class="logo logo-ico-widht-text" title="PathSoft">
|
|
|
+<img class="lazy logo-ico" data-src="__IBOXS__/picture/favicon.png" width="36" height="35" src="__IBOXS__/picture/favicon.png" alt="">
|
|
|
+<span class="logo-text">爱奇工具箱</span>
|
|
|
+</a>
|
|
|
+</div>
|
|
|
+</div>
|
|
|
+</div>
|
|
|
+</nav>
|
|
|
+</header>
|
|
|
+<link rel="stylesheet" type="text/css" href="__IBOXS__/css/templates.css">
|
|
|
+<link rel="stylesheet" type="text/css" href="__IBOXS__/css/bootstrap-select.min.css">
|
|
|
+<script src="__IBOXS__/js/bootstrap-select.min.js"></script>
|
|
|
+<style type="text/css">
|
|
|
+ .breadcrumb {
|
|
|
+ padding: 8px 15px 13px 15px;
|
|
|
+ line-height: 36px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .breadcrumb > li {
|
|
|
+ margin-top: 6px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .breadcrumb > .active {
|
|
|
+ color: red;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .tools_list {
|
|
|
+ min-height: 500px;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ .servises-item-desc a {
|
|
|
+ text-decoration: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .servises-item:hover .servises-item-desc a {
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ </style>
|
|
|
+<div class="container centent" style="padding-bottom:20px;">
|
|
|
+<div class="row">
|
|
|
+
|
|
|
+{volist name="tags" id="vo"}
|
|
|
+<ol class="breadcrumb col-sm-12 " >
|
|
|
+ {if condition="$vo['tagname'] eq '热门' "}
|
|
|
+ <img src="/static/admin/images/fire.png" style="width: 20px;height: 20px;"><li style="color: #EF5350;">{$vo.tagname}</li>
|
|
|
+ {elseif condition="$vo['tagname'] eq '推荐' "/}
|
|
|
+ <img src="/static/admin/images/zan.png" style="width: 20px;height: 20px;"><li style="color: #4FC3F7;">{$vo.tagname}</li>
|
|
|
+ {elseif condition="$vo['tagname'] eq 'PDF' "/}
|
|
|
+ <img src="/static/admin/images/pdf.png" style="width: 20px;height: 20px;"><li style="color: #FF5722;">{$vo.tagname}</li>
|
|
|
+ {elseif condition="$vo['tagname'] eq '开发' "/}
|
|
|
+ <img src="/static/admin/images/jt.png" style="width: 20px;height: 20px;"><li style="color: #EC407A;">{$vo.tagname}</li>
|
|
|
+ {/if}
|
|
|
+
|
|
|
+ {volist name="vo['children']" id="v"}
|
|
|
+ <li><a href="{:url('Index/title',['id'=>$v.id])}">{$v.title}</a></li>
|
|
|
+
|
|
|
+ {/volist}
|
|
|
+ <a href="{:url('base/alls')}" style="color:#4FC3F7; ">更多>></a>
|
|
|
+
|
|
|
+</ol>
|
|
|
+{/volist}
|
|
|
+
|
|
|
+
|
|
|
+<ol class="breadcrumb col-sm-12 col-auto item nav-list" id="choose-tool">
|
|
|
+ <li><a href="{:url('index/homepage')}">首页</a></li>
|
|
|
+
|
|
|
+ <li>
|
|
|
+ <a href="{:url('index/artis')}">网址</a>
|
|
|
+ </li>
|
|
|
+
|
|
|
+ <li>
|
|
|
+ <a href="{:url('base/alls')}" >工具</a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="#" >友情链接</a>
|
|
|
+ </li>
|
|
|
+</ol>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+<script type="text/javascript">
|
|
|
+ //解决a标签带超链接,点击跳转显示高亮颜色
|
|
|
+ $('#choose-tool li a').each(function() {
|
|
|
+
|
|
|
+ if ($($(this))[0].href == String(window.location)) {
|
|
|
+ $(this).css('color','#2196f3');
|
|
|
+ };
|
|
|
+ });
|
|
|
+</script>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</div>
|
|
|
+</body>
|
|
|
+</html>
|
|
|
+
|
|
|
+
|
|
|
+
|