78模板网分享cms建站教程,提供网站模板、网站插件、办公模板等模板教程免费学习,找模板教程就上78模板网!

emlog给文章加入阅读剩下内容按钮

给文章加入阅读剩下内容按钮

这个功能本身十分鸡肋,但是为了页面美观还是有必要的

教程开始

1、首先给文章div加入css

overflow: hidden;

2、然后加入一段按钮和js代码

<div class="rest-butt-content" id="rest-butt-content" style="display:none;"><div id="rest-butt" onclick="rest_butt();" style="margin: 1rem auto;line-height: 2.3rem;display: block;width: 8rem;border-radius: 5px;border: 1px solid #6f8ec5;text-align: center;cursor: pointer;color: #6f8ec5;">阅读余下内容</div></div>

    <script>

      if($('.art-content').height()>600){

        // 如果内容页高度大于600

        $('.art-content').height('600');

        $('#rest-butt-content').show();

        // 控制内容页的高度到600

        // 且按钮为显示状态

      }else{

        // 否则不出现阅读更多的按钮

        $('#rest-butt-content').hide();

      }

      function rest_butt(){

        $('.art-content').height('100%');

        $("#rest-butt-content").remove();

      }

    </script>

上面的代码加到文章内容结束的后面即可,切勿在一个div内。(具体使用到的class请自己按照自己的class/id修改)

可以参考下面的截图进行添加代码

以上操作完成之后就可以实现阅读更多内容的按钮

注意:FLY模板请使用以下教程

 

<div class="rest-butt-content" id="rest-butt-content" style="display:none;"><div id="rest-butt" onclick="rest_butt();" style="margin: 1rem auto;line-height: 2.3rem;display: block;width: 8rem;border-radius: 5px;border: 1px solid #6f8ec5;text-align: center;cursor: pointer;color: #6f8ec5;">阅读余下内容</div></div>

    <script>

      if($('.context').height()>600){

        // 如果内容页高度大于600

        $('.context').height('600');

        $('#rest-butt-content').show();

        // 控制内容页的高度到600

        // 且按钮为显示状态

      }else{

        // 否则不出现阅读更多的按钮

        $('#rest-butt-content').hide();

      }

      function rest_butt(){

        $('.context').height('100%');

        $("#rest-butt-content").remove();

      }

</script>

把此代码加入到echo_log.php文件里面   具体位置自己找

CSS代码放到style.css搜索

::selection{background:#B0E2FF;color:#fff}

在此行代码上面添加

.context{overflow: hidden;}

完成之后就大功告成

本文链接:http://78moban.cn/post/11699.html

版权声明:站内所有文章皆来自网络转载,只供模板演示使用,并无任何其它意义!

联系技术
文章删除 友链合作 技术交流群
1050177837
公众号
公众号
公众号
返回顶部