王尘宇王尘宇

研究百度干SEO做推广变成一个被互联网搞的人

Emlog增添弹出搜刮功用教程


教程演示



教程简介

本日回到家 没事整顿下网站 发下了本身的博客搜刮太丑了 所以二话不说借助了许多著名的博客 终究看上了一款弹出搜刮款式不错的搜刮 也就是饺子的模板EMlog Fly模板 这个模板 17年就入手下手在用了 本年才换了新的模板 所以二话不说 拔Fly的搜刮拔了下来 适配了本身的博客了嘛 人人也都晓得一个网站没有搜刮是不行 不可缺乏的 用户在找东西的时刻 一键搜刮轻易 不空话了 入手下手教程

第一步

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>


相关文章

评论列表

发表评论:
验证码

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。