Updated screenshots, fixed imagebar scaling, added screenshot captions.

This commit is contained in:
archshift 2015-03-06 20:21:33 -08:00
parent 74f5ca4a2c
commit 08c3473ad9
13 changed files with 72 additions and 23 deletions

View File

@ -26,8 +26,8 @@
<link rel="shortcut icon" href="resources/favicon/favicon.ico" />
<!-- Smooth Scroll script -->
<script src="scripts/smooth-scroll/dist/js/bind-polyfill.js"></script>
<script src="scripts/smooth-scroll/dist/js/smooth-scroll.js"></script>
<script src="scripts/smooth-scroll/dist/js/bind-polyfill.min.js"></script>
<script src="scripts/smooth-scroll/dist/js/smooth-scroll.min.js"></script>
<!-- Google Analytics -->
<script>
@ -73,15 +73,33 @@
</div>
<div id="imagebar">
<div><img src="resources/game-screenshots/yeti3DS-1.png" /></div>
<div><img src="resources/game-screenshots/3dscraft-1.png" /></div>
<div><img src="resources/game-screenshots/vvvvvv-1.png" /></div>
<div><img src="resources/game-screenshots/cave-story-1.png" /></div>
<div><img src="resources/game-screenshots/3dnes-1.png" /></div>
<div><img src="resources/game-screenshots/gameyob-1.png" /></div>
<div><img src="resources/game-screenshots/cave-story-2.png" /></div>
<div><img src="resources/game-screenshots/hbmenu-1.png" /></div>
<div><img src="resources/game-screenshots/worldof3dsand-1.png" /></div>
<div><img src="resources/game-screenshots/cavestory-1.png" />
<p>Cave Story</p>
</div>
<div><img src="resources/game-screenshots/woahdave-1.png" />
<p>Woah Dave!</p>
</div>
<div><img src="resources/game-screenshots/superacorns-1.png" />
<p>Super Little Acorns</p>
</div>
<div><img src="resources/game-screenshots/oracleages-1.png" />
<p>The Legend of Zelda - Oracle of Ages</p>
</div>
<div><img src="resources/game-screenshots/picrosse-1.png" />
<p>Picross E</p>
</div>
<div><img src="resources/game-screenshots/yeti3DS-1.png" />
<p>Yeti3DS</p>
</div>
<div><img src="resources/game-screenshots/3dscraft-1.png" />
<p>3DSCraft</p>
</div>
<div><img src="resources/game-screenshots/3dnes-1.png" />
<p>3DNES</p>
</div>
<div><img src="resources/game-screenshots/gameyob-1.png" />
<p>GameYob</p>
</div>
</div>
<div id="about" class="page">
@ -135,7 +153,6 @@
</div>
</div>
<div id="download" class="page">
<p class="alert">Remember that <b>NO</b> commercial software is playable in Citra.</p>
@ -172,19 +189,24 @@
<script type="text/javascript" src="scripts/slick/slick/slick.min.js"></script>
<script type="text/javascript">
smoothScroll.init({
speed: 400,
updateURL: false
});
$(document).ready(function(){
$('#imagebar').slick({
infinite: true,
slidesToShow: 4,
centerMode: true,
slidesToScroll: 1,
swipeToSlide: true,
autoplay: true,
autoplaySpeed: 4000,
autoplaySpeed: 6000,
pauseOnHover: false,
arrows: false,
focusOnSelect: true,
draggable: false,
variableWidth: true
});
smoothScroll.init({
speed: 400,
updateURL: false
});
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -94,7 +94,7 @@ header a:hover {
}
.content {
padding: 15vh 5%;
padding: 15vh 15vw;
}
.content h2,h3 {
@ -178,12 +178,39 @@ p + ul {
background-color: #F80;
}
#imagebar .slick-slide {
-moz-transform: scale(0.98);
-ms-transform: scale(0.98);
-o-transform: scale(0.98);
-webkit-transform: scale(0.98);
transform: scale(0.98);
}
#imagebar img {
margin: auto;
width: 24vw;
width: 70vw;
max-width: 400px;
border: 2px #FFF solid;
border-radius: 0.3vw;
border-bottom: none;
image-rendering: -webkit-optimize-contrast;
image-rendering: -moz-crisp-edges;
}
#imagebar p {
margin: auto;
width: 70vw;
max-width: 400px;
border: 2px #FFF solid;
border-top: none;
font-size: 10pt;
color: #FFF;
background-color: #111;
text-align: center;
}
/* ********************************************* */