Logo is now changing depending on the currency chosen.

This commit is contained in:
Lucas Legname 2014-03-25 00:11:24 +01:00
parent 3e90e43e21
commit 64a088e560
5 changed files with 10 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -125,6 +125,9 @@
</div>
<div class="banner">
<div id="coinLogo">
<img id="coinLogoImg" src="logos/bitcoin.png" alt="currency_logo" />
</div>
<img src="images/banner_beta.png" alt="banner" />
</div>

View file

@ -35,6 +35,8 @@ janin.currency = {
// Switch currency
useCurrency: function(index) {
janin.selectedCurrency = janin.currencies[index];
document.getElementById("coinLogoImg").src = "logos/" + janin.selectedCurrency.name + ".png";
// Regenerate a new wallet when not expensive
ninja.wallets.singlewallet.generateNewAddressAndKey();

View file

@ -93,6 +93,10 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
.redText { color: red; }
.greenText { color: green; }
#coinLogo { width: 55px; height: 55px; padding: 10px; position: absolute; top: 2px; left: 10px; }
#coinLogoImg { width: 100%; height: 100%; }
#main { position: relative; text-align: center; margin: 0px auto; width: 1005px; }
#logo { width: 578px; height: 80px; }
@ -181,7 +185,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
#currencyddl { margin: 20px; position: absolute; right: 0; top: 60px; width: 320px; font-size: 14px; }
#currencyddl select { font-size: 14px; }
.banner { font-size: 46px; text-shadow: 1px 1px 3px #000; color: #FF9547; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); text-align: left; }
.banner { font-size: 46px; text-shadow: 1px 1px 3px #000; color: #FF9547; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); text-align: left; position: relative; }
#donateqrcode { padding: 8px; position: absolute; left: 550px; margin: 25px; border: black solid 1px; }
#donatelist { padding: 20px; }