我的博客园设置

文章主题内容

<script type="text/css">

    body {
        width: 100%;
    }

    #cnblogs_post_body h1 {
        background-color: #333333;
        border-radius: 5px;
        text-align: center;
        color: white;
        text-shadow: 1px 1px 2px #222222;
        padding-left: 15px;
        margin-bottom: 12px;
    }

    #cnblogs_post_body h2 {
        background-color: #333333;
        border-radius: 5px;
        text-align: center;
        color: white;
        text-shadow: 1px 1px 2px #222222;
        padding-left: 15px;
        margin-bottom: 12px;
    }

    #cnblogs_post_body h3 {
        background-color: #008FC6;
        border-radius: 5px;
        color: white;
        text-shadow: 1px 1px 2px #222222;
        padding: 5px 15px;
        margin-bottom: 10px;
    }

    #cnblogs_post_body h4 {
        background-color: #51C332;
        border-radius: 5px;
        color: white;
        text-shadow: 1px 1px 2px #222222;
        padding: 5px 15px;
        margin-bottom: 10px;
        width: 50%;
    }

    code {
        padding: 1px 3px;
        margin: 0 3px;
        background: #ddd;
        border: 1px solid #ccc;
        font-family: Menlo, Monaco, Andale Mono, lucida console, Courier New, monospace;
        word-wrap: break-word;
        font-size: 14px;
    }

    #cnblogs_post_body table {
        text-align: center;
        width: 100%;
        border: 1px solid #dedede;
        margin: 15px 0;
        border-collapse: collapse;
    }

    #cnblogs_post_body table thead tr {
        background: #f8f8f8;
    }

    #cnblogs_post_body table tbody tr:hover {
        background: #efefef;
    }

    #back-to-top {
        background-color: #00CD00;
        box-shadow: 0 0 5px #00CD00;
        color: #444444;
        padding: 10px 10px;
        position: fixed;
        right: 50px;
        bottom: 50px;
        cursor: pointer;
    }

    #back-to-top a {
        text_decoration: none
    }

    #back-to-top a:hover {
        color: white;
    }
    #home { margin: 0 auto; width: 100%; }
    #mainContent { min-height: 200px; *padding-top: 10px; -o-text-overflow: ellipsis; text-overflow: ellipsis; overflow: hidden; word-break: break-all; float: left; width: 80%; background: #fff; }

</script>

 目录自动生成

<script language="javascript" type="text/javascript">
// 生成目录索引列表
// ref: http://www.cnblogs.com/wangqiguo/p/4355032.html
// modified by: zzq
function GenerateContentList()
{
    var mainContent = $('#cnblogs_post_body');
    var h2_list = $('#cnblogs_post_body h2');//如果你的章节标题不是h2,只需要将这里的h2换掉即可

    if(mainContent.length < 1)
        return;
 
    if(h2_list.length>0)
    {
        var content = '<a name="_labelTop"></a>';
        content += '<div id="navCategory" style="color:#152e97;">';
        content += '<p style="font-size:18px;"><b>目录</b></p>';
        content += '<ul>';
        for(var i=0; i<h2_list.length; i++)
        {
            var go_to_top = '<div style="text-align: right;"><a href="#_labelTop" style="color:#f68a33">回到顶部</a><a name="_label' + i + '"></a></div>';
            $(h2_list[i]).before(go_to_top);
            
            var h3_list = $(h2_list[i]).nextAll("h3");
            var li3_content = '';
            for(var j=0; j<h3_list.length; j++)
            {
                var tmp = $(h3_list[j]).prevAll('h2').first();
                if(!tmp.is(h2_list[i]))
                    break;
                var li3_anchor = '<a name="_label' + i + '_' + j + '"></a>';
                $(h3_list[j]).before(li3_anchor);
                li3_content += '<li><a href="#_label' + i + '_' + j + '">' + $(h3_list[j]).text() + '</a></li>';
            }
            
            var li2_content = '';
            if(li3_content.length > 0)
                li2_content = '<li><a href="#_label' + i + '">' + $(h2_list[i]).text() + '</a><ul>' + li3_content + '</ul></li>';
            else
                li2_content = '<li><a href="#_label' + i + '">' + $(h2_list[i]).text() + '</a></li>';
            content += li2_content;
        }
        content += '</ul>';
        content += '</div><p>&nbsp;</p>';
        content += '<hr style="height:1px;border:none;border-top:1px dashed #0066CC;"/>';
        if($('#cnblogs_post_body').length != 0 )
        {
            $($('#cnblogs_post_body')[0]).prepend(content);
        }
    }   
}

GenerateContentList();
</script>

猜你喜欢

转载自www.cnblogs.com/zhaijihai/p/10140105.html