-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add animated display to top ten pages
- Loading branch information
1 parent
ec13eb0
commit b78008e
Showing
5 changed files
with
316 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,62 @@ | ||
<h1 id="pageheaders">Most Common Breeds</h1> | ||
<hr /> | ||
@model List<System.String> | ||
|
||
@foreach (var item in ((List<System.String>)ViewBag.TopBreeds)) | ||
{ | ||
<h1 id="pageheaders">Most Common Breeds</h1> | ||
|
||
<div class="text-focus-in"> | ||
@item | ||
</div> | ||
@{ | ||
ViewBag.Fifth = "5th - " + ViewBag.TopBreeds[4]; | ||
ViewBag.Fourth = "4th - " + ViewBag.TopBreeds[3]; | ||
ViewBag.Third = "3rd - " + ViewBag.TopBreeds[2]; | ||
ViewBag.Second = "2nd - " + ViewBag.TopBreeds[1]; | ||
ViewBag.First = "1st - " + ViewBag.TopBreeds[0]; | ||
} | ||
|
||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-4" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Fifth</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-3" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Fourth</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-2" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Third</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-1" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Second</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-0" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.First</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,63 @@ | ||
<h1 id="pageheaders">Most Common Colors</h1> | ||
<hr /> | ||
|
||
@foreach (var item in ((List<System.String>)ViewBag.TopColors)) | ||
{ | ||
<tr> | ||
<td> | ||
@item | ||
</td> | ||
</tr> | ||
@model List<System.String> | ||
|
||
<h1 id="pageheaders">Most Common Colors</h1> | ||
|
||
@{ | ||
ViewBag.Fifth = "5th - " + ViewBag.TopColors[4]; | ||
ViewBag.Fourth = "4th - " + ViewBag.TopColors[3]; | ||
ViewBag.Third = "3rd - " + ViewBag.TopColors[2]; | ||
ViewBag.Second = "2nd - " + ViewBag.TopColors[1]; | ||
ViewBag.First = "1st - " + ViewBag.TopColors[0]; | ||
} | ||
|
||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-4" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Fifth</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-3" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Fourth</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-2" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Third</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-1" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Second</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-0" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.First</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,62 @@ | ||
<h1 id="pageheaders">Most Common Names</h1> | ||
<hr /> | ||
@model List<System.String> | ||
|
||
@foreach (var item in ((List<System.String>)ViewBag.TopNames)) | ||
{ | ||
<tr> | ||
<td> | ||
@item | ||
</td> | ||
</tr> | ||
<h1 id="pageheaders">Most Common Names</h1> | ||
|
||
@{ | ||
ViewBag.Fifth = "5th - " + ViewBag.TopNames[4]; | ||
ViewBag.Fourth = "4th - " + ViewBag.TopNames[3]; | ||
ViewBag.Third = "3rd - " + ViewBag.TopNames[2]; | ||
ViewBag.Second = "2nd - " + ViewBag.TopNames[1]; | ||
ViewBag.First = "1st - " + ViewBag.TopNames[0]; | ||
} | ||
|
||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-4" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Fifth</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-3" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Fourth</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-2" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Third</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-1" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Second</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-0" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.First</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,62 @@ | ||
<h1 id="pageheaders">Most Common Personalities</h1> | ||
<hr /> | ||
@model List<System.String> | ||
|
||
@foreach (var item in ((List<System.String>)ViewBag.TopPersonalities)) | ||
{ | ||
<tr> | ||
<td> | ||
@item | ||
</td> | ||
</tr> | ||
<h1 id="pageheaders">Most Common Personalities</h1> | ||
|
||
@{ | ||
ViewBag.Fifth = "5th - " + ViewBag.TopPersonalities[4]; | ||
ViewBag.Fourth = "4th - " + ViewBag.TopPersonalities[3]; | ||
ViewBag.Third = "3rd - " + ViewBag.TopPersonalities[2]; | ||
ViewBag.Second = "2nd - " + ViewBag.TopPersonalities[1]; | ||
ViewBag.First = "1st - " + ViewBag.TopPersonalities[0]; | ||
} | ||
|
||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-4" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Fifth</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-3" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Fourth</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-2" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Third</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-1" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.Second</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"></div> | ||
<div class="col-md-4"> | ||
<div class="text-focus-in-0" style="background-color: teal; border: 3px; border-style: solid; | ||
border-color: #3b312b; margin-top: 4px; margin-bottom: 4px;"> | ||
<p style="margin-top: 3px; margin-bottom: 3px; font-size: 23px;">@ViewBag.First</p> | ||
</div> | ||
</div> | ||
<div class="col-md-4"></div> | ||
</div> |