new (external) content

This commit is contained in:
Ryan Westphal 2013-07-16 11:39:37 -04:00
commit cea094ca5e
6 changed files with 23 additions and 13 deletions

BIN
Mind's Eye/surii-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 578 B

View file

@ -77,6 +77,11 @@
padding: 0;
}
.app-info h2.small
{
font-size: 1em;
}
.app-info span
{
color: #222;

View file

@ -24,6 +24,8 @@
<li>All element test page (one at a time, automated)</li>
<li>Create surii.net Nintendo Zone access point</li>
</ul>
<h2>2013-07-16</h2>
<p>Nekos in Wonderland, a game by the guy who did Okiwi will be added to the external section. Which I guess I'm keeping now. <a href="http://socialneko.com/wonderland/game.php">http://socialneko.com/wonderland/game.php</a>.</p>
<h2>2013-06-09</h2>
<p>Wow, it's been a while.</p>
<p>The <i>Mind's Eye</i> on Nintendo Video has a link to vote. That link opens the web browser to <a href="http://watchmindseye.com/3ds">http://watchmindseye.com/3ds</a>. The page pulls the document back when you pan, it's probably just formatted to do that. I doubt it's JavaScript but I'll check it out. They <b>are</b> using JavaScript.</p>

View file

@ -32,22 +32,22 @@
</div>
<div class="blurb">
external games &amp; apps
</div>
<div class="apps">
<ul id="appsExternal">
</ul>
</div>
<div class="blurb">
unfinished demos &amp; hacks
surii.net demos &amp; hacks
</div>
<div class="apps">
<ul id="appsHacks">
</ul>
</div>
<div class="blurb">
external games, apps, &amp; sites
</div>
<div class="apps">
<ul id="appsExternal">
</ul>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery-1.8.1.min.js"></script>

View file

@ -1,6 +1,6 @@
$(function () {
function makeItem( name, item ) {
return '<li><a href="' + item.url + '" title="' + name + '"><img alt="" src="' + name + '/surii-icon.png" /><div class="app-info" style="display: none;"><h2>' + name + '</h2>' + '<span>' + (item.desc || '') + '</span>' + '</div></a></span></li>';
return '<li><a href="' + item.url + '" title="' + name + '"><img alt="" src="' + name + '/surii-icon.png" /><div class="app-info" style="display: none;"><h2 class="' + ( item.titleClass || '' ) + '">' + name + '</h2>' + '<span>' + (item.desc || '') + '</span>' + '</div></a></span></li>';
}
var appsSurii = {
@ -17,18 +17,21 @@
desc: "Phantom Menace: Abridged"
}
},
appsExternal = {
/*
"OkiwiDS": {
url: "http://okiwids.co.cc/3DS/",
desc: "web browsing, games, chat"
}
*/
},
appsHacks = {
"ryanttb": {
url: "hack/",
desc: "3DS browser tricks"
},
},
appsExternal = {
"Nekos in Wonderland": {
titleClass: "small",
url: "http://socialneko.com/wonderland/game.php",
desc: "platformer demo"
},
"Mind's Eye": {
url: "http://watchmindseye.com/3ds",
desc: "Nintendo Video survey"
}
},
appItems = "",