Emlog程序搜索功能优化教程

作者: 小易

全网最全的网络资源分享网站

手机扫码查看

特别声明:本站多为原创或网络转载、资源使用一般不提供帮助、本站资源不可商用原创或部分除外、如有侵权请联系!

摘要:教程演示教程简介看上了一款弹出搜索样式不错的搜索 适配了Emlog程序搜索功能优化大家也都知道一个网站没有搜索是不行 不可缺少的 用户在找东西的时候 一键搜索方便 不废话了 开始教...

教程演示

搜索功能

教程简介

 看上了一款弹出搜索样式不错的搜索 适配了Emlog程序搜索功能优化大家也都知道一个网站没有搜索是不行 不可缺少的 用户在找东西的时候 一键搜索方便 不废话了 开始教程吧

搜索功能优化教程

  • 第一步

module.php模板文件增加如下代码

<?php //search:手机搜索标签 function search_tag($title){ global $CACHE; $tag_cache = $CACHE->readCache('tags');?> <?php shuffle ($tag_cache); $tag_cache = array_slice($tag_cache,0,15);foreach($tag_cache as $value): ?> <li class="search-go"><a href="<?php echo BLOG_URL; ?>tag/<?php echo $value['tagname']; ?>"><?php echo $value['tagname']; ?></a></li> <?php endforeach; ?> <?php }?>
  • 第二步

在你的公用css文件增加如下css

.search-forms.is-visible {display: block;} .search-forms.is-visible {animation: fade-in;animation-duration: .3s;-webkit-animation: fade-in .3s;} .search-forms {position: fixed;top: 0;left: 0;right: 0;bottom: 0;background: #fff;-webkit-animation: fade-zoom-in .3s forwards;-o-animation: fade-zoom-in .3s forwards;animation: fade-zoom-in .3s forwards;display: none;z-index: 9999;-webkit-backface-visibility: hidden;overflow: hidden;} .search-forms .search-form-inner {max-width: 640px;padding: 0 20px;margin: auto;position: absolute;width: 100%;left: 0;right: 0;height: 285px;top: -100px;bottom: 0;} .search-forms .search-form-box {position: relative;margin-bottom: 40px;} .search-forms input {background: #fff;display: inline-block;line-height: 58px;height: 58px;color: #949494;font-size: 15px;border-radius: 3px;padding: 0 20px;width: 100%;border: 1px solid #e2e2e2;text-align: left;-webkit-appearance: none;} .search-forms button {background: #000;display: inline-block;line-height: 58px;height: 58px;width: 100px;color: #fff;font-size: 15px;padding: 0 25px;margin: 0;border-radius: 0 3px 3px 0;position: absolute;right: 0;top: 0;border: 0;} .search-forms .search-form-box {position: relative;margin-bottom: 40px;} .search-forms .search-form-inner {max-width: 640px;padding: 0 20px;margin: auto;position: absolute;width: 100%;left: 0;right: 0;height: 285px;top: -100px;bottom: 0;} .search-forms .close-search {display: block;position: absolute;top: 3%;right: 1%;width: 50px;height: 50px;cursor: pointer;background: rgba(255,255,255,0);} .search-commend ul li a {display: inline-block;line-height: 1;padding: 5px 5px;border: 1px solid #e2e2e2;border-radius: 2px;color: #949494;} .search-commend ul li {display: inline-block;margin-bottom: 10px;margin-right: 10px;} .search-commend h4 {position: relative;font-size: 16px;margin: 0 0 20px;} .close-search {display: block;position: absolute;top: 10%;right: 10%;width: 80px;height: 80px;cursor: pointer;background: rgba(255,255,255,0);} .close-bottom, .close-top {position: absolute;left: 14px;background: #333;width: 22px;height: 2px;transition: .3s;} .close-search .close-bottom, .close-search .close-top {width: 30px!important;left: 5px!important;} .close-search .close-top {top: 15px!important;} .close-top {top: 19px;} .close-search .close-bottom, .close-search .close-top {width: 45px;left: 16px;} .close-top {-webkit-transform: translate(0,5px) rotate(225deg);transform: translate(0,5px) rotate(225deg);} .close-search .close-top {top: 34px;} .search-forms .close-search {display: block;position: absolute;top: 3%;right: 1%;width: 50px;height: 50px;cursor: pointer;background: rgba(255,255,255,0);} .close-bottom {-webkit-transform: translate(0,-5px) rotate(135deg);transform: translate(0,-5px) rotate(135deg);} .close-search .close-bottom {bottom: 24px!important;}
  • 第三步

增加到你的公用js增加如下js

$('.fly-search-s').click(function () {$('.search-forms').addClass('is-visible')});
$('.search-go,.close-search').click(function(){$(".search-forms").removeClass("is-visible")});
  • 第四步

footer.php文件增加如下代码

<div class="search-forms"> <form method="get" action="<?php echo BLOG_URL;?>"> <div class="search-form-inner"> <div class="search-form-box"> <input class="form-search" type="text" name="keyword" placeholder="输入搜索关键词"> <button type="submit" id="btn-search" class="search-go"><i class="fa fa-search"></i> </button> </div> <div class="search-commend"> <h4>大家都在搜</h4> <ul> <?php search_tag($title); ?> </ul> </div> </div> </form> <div class="close-search"> <span class="close-top"></span> <span class="close-bottom"></span> </div> </div>
  • 第五步

以下是点击弹出搜索 增加你要显示的地方

<li> <a href="javascript:;" class="fly-search-s"> <span class="fa fa-search"></span> 搜索 </a></li>

 

分享到:
打赏
  •  阅读时间:

    字数统计:本文共有 4173 个字

    本文标题:《Emlog程序搜索功能优化教程》发布于2022-6-2

    文章转载:https://www.xiaodongyl.com/post-2433.html

    版权声明:文章由《 小易》发布、原创转载请保留出处!

    评论

    
    切换注册

    登录

    忘记密码?

    您也可以使用第三方帐号快捷登录

    切换登录

    注册

    觉得文章有用就打赏一下文章作者

    支付宝扫一扫打赏

    微信扫一扫打赏