top of page

Asp.net.MVC5でhome画面の背景色を変える方法


Azure.MVC5でホーム画面の背景色を変える方法ですが、Viewをいじります。

なお、私の環境はこんな感じです。

Visual Studio 2015 Community

Windows 7 Professional

あと、jQueryとCSSは使えるような設定になっています。

初期設定ですとViews内のHome内のIndexは以下のようになっています。


@{
    ViewBag.Title = "Home Page";
}
 
<div class="jumbotron">
    <h1>ASP.NET</h1>
    <p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.</p>
    <p><a href="http://asp.net" class="btn btn-primary btn-lg">Learn more &raquo;</a></p>
</div>
 
<div class="row">
    <div class="col-md-4">
        <h2>Getting started</h2>
        <p>
            ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that
            enables a clean separation of concerns and gives you full control over markup
            for enjoyable, agile development.
        </p>
        <p><a class="btn btn-default" href="http://go.microsoft.com/fwlink/?LinkId=301865">Learn more &raquo;</a></p>
    </div>
    <div class="col-md-4">
        <h2>Get more libraries</h2>
        <p>NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.</p>
        <p><a class="btn btn-default" href="http://go.microsoft.com/fwlink/?LinkId=301866">Learn more &raquo;</a></p>
    </div>
    <div class="col-md-4">
        <h2>Web Hosting</h2>
        <p>You can easily find a web hosting company that offers the right mix of features and price for your applications.</p>
        <p><a class="btn btn-default" href="http://go.microsoft.com/fwlink/?LinkId=301867">Learn more &raquo;</a></p>
    </div>
</div>

ここで最も目立つ<div class="jumbotron">を変えるとします。

変え方は簡単でViewBag.Titleの下にstyleを入れて、

.jumbotron{}と入力します。

あとはこのカッコ内を好きにいじればOKです。

例えば背景色を青系に変えたい場合は

background-color:aqua

と入力すれば青色に変わります。

まとめて書くとこんな感じです。


@{
    ViewBag.Title = "Home Page";
}
<style>
    .jumbotron{
        background-color:aqua
    }
 
</style>
 
<div class="jumbotron">

なお、Index画面だけでなく、全体の画面を変えたい場合はView内のShared内の_Layout.chthtmlを変更します。

初期設定ですとこんな感じです。


<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>@ViewBag.Title - My ASP.NET Application</title>
    @Styles.Render("~/Content/css")
    @Styles.Render("~/Content/jqueryui")
    @Scripts.Render("~/bundles/modernizr")
 
</head>
 
 
<body>
    <div class="navbar navbar-inverse navbar-fixed-top">
        <div class="container">
            <div class="navbar-header">
                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                </button>
                @Html.ActionLink("Application name", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
            </div>
            <div class="navbar-collapse collapse">
                <ul class="nav navbar-nav">
                    <li>@Html.ActionLink("Home", "Index", "Home")</li>
                    <li>@Html.ActionLink("About", "About", "Home")</li>
                    <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
                </ul>
                @Html.Partial("_LoginPartial")
            </div>
        </div>
    </div>
    <div class="container body-content">
        @RenderBody()
        <hr />
        <footer>
            <p>&copy; @DateTime.Now.Year - My ASP.NET Application</p>
        </footer>
    </div>
 
    @Scripts.Render("~/bundles/jquery")
    @Scripts.Render("~/bundles/bootstrap")
    @RenderSection("scripts", required: false)
</body>
</html>

なお、jqueryuiを使えるようにしているので、head内に

@Styles.Render("~/Content/jqueryui")

ここで<div class="container">を変えたい場合は、headの下にstyleを挿入してその中に、.containerとすればOKです。


</head>
<style>
    .container{
        background-color:lightgreen
    }
</style>
<body>

この設定にするとcontainerの背景色が明るい緑になります。

Indexだけ背景色を変えたサイトはこちらです。

http://japaneseccet.azurewebsites.net/

_Layoutで全体的に背景色を変えたサイトはこちらになります。

見比べていただければ幸いです。

http://smokingprevention.azurewebsites.net/

なお、写真はzurichの中心街を船で移動している時の背景です。背景色つながりで載せてみました。

Featured Posts