1.软文推荐

2.软文推荐

3.软文推荐

dedebiz添加查看全文html代码的简单方法:

  <div id="article_content" class="article_content clearfix">
    <div id="content_views" class="htmledit_views">
       {dede:field.body/}
    </div>
  </div>
  <div id="treeSkill"></div>
<div id="vip">
<a class="submit" href="{dede:field name='arcurl'/}" rel="nofollow">查看全文</a>
</div>

CSS代码:

        .article_content
        {
            height: 200px;
            overflow: hidden;
        }
        #vip
        {
            width: 100%;
            background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(255,255,255,0)),color-stop(70%, #fff));
            background-image: linear-gradient(-180deg,rgba(255,255,255,0) 0%,#fff 70%);
            padding-bottom: 16px;
            text-align: center;
            position: relative;
            z-index: 998;
            padding-top: 200px;
            margin-top: -200px;
        }
        .submit
        {
            font-size: 16px;
            background-color: #00CC69;
            border-color: rgba(48,131,235,0.9);
            color: #FFFFFF;
            border-radius: 3px;
            display: inline-block;
            padding: 6px 12px;
            margin-bottom: 0;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.42857143;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
            -ms-touch-action: manipulation;
            touch-action: manipulation;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-image: none;
            border: 1px solid transparent;
            border-radius: 4px;
        }
.entry-copyright {
    padding: 6px;
    font-size: 12px;
    line-height: 1.6;
    color: #828282;
    border: 1px solid #efefef;
    background: rgba(239,239,239,.4);
    border-radius: 4px;
}

js代码:

$(function () {
    if (GetUrlPara() == "action=onClick") {
        $("#article_content").removeClass("article_content");
        $("#vip").remove();
    }
             else{
    				setTimeout(() => {
    				$(".baidu_pl").removeAttr("style");
                    $("#article_content").removeAttr("style");
					if($('#vip a').length>1)
					{$('#vip a').attr("href",$('#vip a:last').attr("href")+"?action=onClick");}else{$('#vip a').attr("href",$('#vip a').attr("href")+"?action=onClick");}
					

    				}, 1000);
    			  
    		 }
		 
});

function GetUrlPara() {
    var url = document.location.toString();
    var arrUrl = url.split("?");
    var para = arrUrl[1];
    return para;
}

 

相关文章 8

1

让dedebiz的tag标签后显示每个标签相应的文章数量 2个月前

让dedebiz的tag标签后显示每个标签相应的文章数量:让文章更加丰富起来,很多朋友都会有这个需要。 {dede:tag row='10' sort='new' getall='1'}a href...

2

修改dedebiz网站地图生成模板文件获得想要的排序效果: 2个月前

修改dedebiz网站地图生成模板文件/theme/plus/ 获得想要的网站地图排序效果: ID排序: {dede:arclist row='1000' titlelen='255' orderby='id'} 发布时间排序...

3

火车头采集器在dedebiz入库前覆盖掉同标题内容。 3个月前

火车头采集器在dedebiz入库前覆盖掉同标题内容。 在/admin/article_api.php内添加覆盖代码; // 检测是否重复$row = $dsql-GetOne("SELECT `id` FROM `biz_ar...

4

DedeBiz动态列表页设置超过10页就不显示,防止被全站采集的方法 3个月前

DedeBiz动态列表页设置超过10页就不显示,防止被全站采集的方法: 我们的动态列表页 list.php?tid=1PageNo=28 这个分页的数量控制,设置只能显示...

5

dedebiz发布时间显示为今天昨天前天的方法 4个月前

dedebiz的文章发布时间调用格式一般分为一下这些: [field:pubdate function=MyDate(Y-m-d,@me)/] 2013-12-17 [field:pubdate function=MyDate(Y-m-d H:i,@me)/] 2013-12-17...

6

dedebiz列表添加自增序号代码 4个月前

dedebiz列表添加序号代码如下: //默认从1开始自增 [field:global name=autoindex/] 但是有时候我们可能不需要从1开始,比如从2开始,那么就需要这...

7

dedebiz常用标签调用代码 5个月前

dedebiz常用标签调用代码: 1、网站首页标题调用标签 {dede:global.cfg_webname/}或{dede:global name=cfg_webname/} 2、网站首页描述调用标签 3、栏目标题调...

8

dedebiz添加最新更新时间代码(批量生成时有效) 5个月前

dedebiz添加最新更新时间代码(批量生成时有效),可以实现在更新的时候,文章时间为当前系统时间,让搜索引擎以为你这是最新的文章。...