Visual Studio 色彩配置 –> DarkColorful v1.0 發布

來源:互聯網
上載者:User
使用方法:在Visual Studio的Tools菜單下選擇匯入匯出設定即可。 使用效果如下: C#:code
public static string Undent(string s){    int num;    string[] strArray = s.Split(new char[] { '\n' });    int startIndex = 0x7fffffff;    foreach (string str in strArray)    {        num = 0;        while ((num < str.Length) && (num < startIndex))        {            if (!char.IsWhiteSpace(str[num]))            {                startIndex = num;                break;            }            num++;        }    }    new StringBuilder();    for (num = 0; num < strArray.Length; num++)    {        if (strArray[num].Length > startIndex)        {            strArray[num] = strArray[num].Substring(startIndex);        }    }    return string.Join("\n", strArray);}

Html:

code
<div id="header">    <div id="blogTitle">        <a id="lnkBlogLogo" href="http://www.cnblogs.com/xushuo/">            <img id="blogLogo" src="/Skins/custom/images/logo.gif"                  alt="返回首頁" /></a>        <!--done-->        <h1>            <a id="Header1_HeaderTitle" class="headermaintitle"                href="http://www.cnblogs.com/xushuo/">                @Yes! Scott!#</a></h1>        <h2>            /*CodeMusic*/</h2>    </div>    <!--end: blogTitle 部落格的標題和副標題 -->    <div id="navigator">        <!--done-->        <ul id="navList">            <li><a id="MyLinks1_HomeLink" class="menu"                    href="http://www.cnblogs.com/">部落格園</a></li>            <li><a id="MyLinks1_SpaceLink" class="menu"                    href="http://space.cnblogs.com/">社區</a></li>        </ul>        <div class="blogStats">            <!--done-->            隨筆- 14&nbsp; 文章- 0&nbsp; 評論- 1&nbsp;        </div>        <!--end: blogStats -->    </div>    <!--end: navigator 部落格導覽列 --></div><!--end: header 頭部 -->

XML:

code
<?xml version="1.0" encoding="utf-8"?><div id="navigator">  <!--done-->  <ul id="navList">    <li>      <a id="MyLinks1_HomeLink" class="menu"         href="http://www.cnblogs.com/">部落格園</a>    </li>    <li>      <a id="MyLinks1_SpaceLink" class="menu"         href="http://space.cnblogs.com/">社區</a>    </li>  </ul>  <!--end: blogStats --></div>

JavaScript:

code
$(function () {    $(".catListComment").append($("<ul>"));    $(".divRecentCommentAticle").each(function () {        var tmp = $(this).next().html();        $(this).next().remove();        $(this).appendTo(".catListComment ul").replaceWith("<li>" + $(this).html() + "<br />" + tmp + "</li>");    });    $("#mainContent, #main,.forFlow").css("min-height", $("#sideBar").height() + 300);    $(".code div").click(function () {        $(this).next().slideToggle('normal');    });    $(".commentform").contents().not("[nodeType=1]").remove();    $("#comment_form>p:contains('Ctrl+Enter')").nextAll().not($(".relative_search")).remove();    $("#ctl05_divCommentPannel").siblings().not($(".relative_search")).remove();    $("#ctl05_divLoginPannel").nextAll().not($(".relative_search")).remove();    $("#navList li").hover(function () {        $(this).animate({ top: -20 }, 500);    }, function () {        $(this).animate({ top: 0 }, 500);    });});

CSS:

感興趣的的朋友可以從這裡下載:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.