prepare to nft
This commit is contained in:
@@ -19,17 +19,19 @@
|
||||
|
||||
<script src="js/console.js" defer></script>
|
||||
<script src="js/lastblock.js" defer></script>
|
||||
<script src="js/blockexplorer.js" defer></script>
|
||||
|
||||
<script src="js/simpleParallax.js"></script>
|
||||
|
||||
<!--
|
||||
-- From https://highlightjs.org
|
||||
-->
|
||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/styles/atom-one-dark.min.css">
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/highlight.min.js"></script>
|
||||
<script>hljs.initHighlightingOnLoad();</script>
|
||||
|
||||
<script>
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
setInterval(changeGargoyle,10000);
|
||||
|
||||
getMyAdressInfos();
|
||||
|
||||
setParallax();
|
||||
|
||||
$('#myNavbar').on('show.bs.collapse', function () {
|
||||
$('#logo_topisto').css({'height' : '30px','width' : '30px'});
|
||||
$('#titre_topisto').css({'font-size' : '30px'});
|
||||
@@ -40,7 +42,7 @@
|
||||
});
|
||||
|
||||
// Add smooth scrolling to all links in navbar + footer link
|
||||
$(".navbar a, footer a[href='#myPage']").on('click', function(event) {
|
||||
$("footer a[href='#myPage']").on('click', function(event) {
|
||||
// Make sure this.hash has a value before overriding default behavior
|
||||
if (this.hash !== "") {
|
||||
// Prevent default anchor click behavior
|
||||
@@ -65,13 +67,89 @@
|
||||
var pos = $(this).offset().top;
|
||||
var winTop = $(window).scrollTop();
|
||||
if (pos < winTop + 600) {
|
||||
blockchainExplorer.ajouterPreviousBlock();
|
||||
$(this).addClass("slide");
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
*
|
||||
* Pré-charger les images
|
||||
*
|
||||
*/
|
||||
var preloadImages = function (imgs, callback) {
|
||||
var img;
|
||||
var remaining = 26;
|
||||
for (var i = 0; i < 26; i++) {
|
||||
img = new Image;
|
||||
img.onload = function () {
|
||||
--remaining;
|
||||
if (remaining <= 0) {
|
||||
callback();
|
||||
}
|
||||
if (i == 0)
|
||||
$("#gargoyle").attr("src", this.src)
|
||||
};
|
||||
d = new Date();
|
||||
img.src = "images/logo.php?rank="+i+"&ts="+d.getTime();
|
||||
imgs.push(img);
|
||||
}
|
||||
};
|
||||
|
||||
/*
|
||||
* Faire varier l'image de la gargouille
|
||||
*
|
||||
*/
|
||||
var gargoyles = [];
|
||||
function changeGargoyle()
|
||||
{
|
||||
if (gargoyles.length == 0)
|
||||
{
|
||||
preloadImages(gargoyles, function(){
|
||||
topistoConsole.log("All Gargoyles are loaded");
|
||||
});
|
||||
} else {
|
||||
r = Math.floor(Math.random() * gargoyles.length);
|
||||
$("#gargoyle").attr("src", gargoyles[r].src);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Récupéer les taux de change actuels
|
||||
* https://blockchain.info/ticker?cors=true
|
||||
*
|
||||
* Récupéer la balance de mon adresse
|
||||
* https://blockchain.info/q/addressbalance/15V7XfBX2Xn5uKpK3VuVngDg44TSKLtTSh?cors=true
|
||||
*
|
||||
* Calculer et afficher la balance en EUR et USD
|
||||
*
|
||||
*/
|
||||
function getMyAdressInfos()
|
||||
{
|
||||
var balance_url = 'https://blockchain.info/q/addressbalance/15V7XfBX2Xn5uKpK3VuVngDg44TSKLtTSh?cors=true';
|
||||
$.get( balance_url, function( data ) {
|
||||
var balance = data/100000000;
|
||||
var btc_change = 'balance : ' + balance + ' ₿';
|
||||
$.getJSON( 'https://blockchain.info/ticker?cors=true', function( data ) {
|
||||
btc_change += ' / '+ Math.round(data.USD['15m']*balance) + ' $';
|
||||
btc_change += ' / '+ Math.round(data.EUR['15m']*balance) + ' €';
|
||||
$('#BTC_CHANGE').html(btc_change);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function setParallax()
|
||||
{
|
||||
var image = document.getElementsByClassName('simple-parallax');
|
||||
new simpleParallax(image,{
|
||||
scale: 1.5,
|
||||
overflow: true,
|
||||
orientation: 'down'
|
||||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
@@ -94,12 +172,40 @@
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="about.php">About</a></li>
|
||||
<li><a href="index.php">Explorer</a></li>
|
||||
<li><a href="#blog">Blog</a></li>
|
||||
<li><a href="#explorer">Blog</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="explorer" class="container-fluid" style="padding-bottom:10px">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 text-left">
|
||||
<br>
|
||||
<br>BTC adress : <a href="https://www.blockchain.com/btc/address/15V7XfBX2Xn5uKpK3VuVngDg44TSKLtTSh">15V7XfBX2Xn5uKpK3VuVngDg44TSKLtTSh</a>
|
||||
<br><div id="BTC_CHANGE"> ₿ - $ - €</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="about" class="container-fluid bg-grey" style="padding-top:5px;padding-bottom:5px">
|
||||
<div class="row" style="margin-top:0px">
|
||||
<div class="col-sm-8" style="margin-top:0px">
|
||||
<h4 style="margin-top:0px">This site is a hobby.<br>It's also a testing place where I can do things that are impossible at work.</h4>
|
||||
<p class="text-justify">I like <b>surfing</b> and sailing on the ocean. But during longs winter nights, computing is fun. I'm interested into <b>cryptocurrencies</b>, computationnal art, datavisualisation. I know that <b>42</b> is the answer to <b>the Life, Universe and Everything Else</b>. As <b>Eto Demerzel</b> said to me, the <b>Seldon's Plan</b> will save the Galaxy. My favorites books are the <b>House of leaves</b>, the <b>Necronomicron</b> and the <b>DarkHold</b>. I also know that <b>great power comes with great responsibility</b>. I'm still in <b>the search of Captain Zero</b>, because <b>the Truth is out there</b>.</p>
|
||||
<p class="text-justify">.I'm also really astonished by <b>Universal Numbers</b>, aka Disjunctives Sequences. Thinking that a single number can contain every others, that's a great <b>mystery</b>. So I'm trying to write the <a href="page.php?id=00190327">Chronicles</a> of these numbers (in french)</p>
|
||||
</div>
|
||||
<div class="col-sm-4 hidden-xs">
|
||||
<!--
|
||||
<div style="background-image:url(images/topisto_vert_tr.png);background-repeat: no-repeat;background-position:center top;background-size: 100% auto;">
|
||||
<img id="gargoyle" src="images/logo.php" alt="avatar dragon gargoyle" width="100%; height: auto" style="opacity:0.4"></img>
|
||||
</div>
|
||||
-->
|
||||
<img id="gargoyle" class="simple-parallax" src="images/logo.php" alt="avatar dragon gargoyle" width="100%; height: auto" style="margin-top:-100px"></img>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="blog" class="container-fluid bg-white" style="padding-top:50px;align:right">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 text-right"> </div>
|
||||
@@ -137,6 +243,35 @@ foreach (glob("articles/20*/header.html") as $filename) {
|
||||
echo $liste;
|
||||
?>
|
||||
|
||||
<div id="contact" class="container-fluid">
|
||||
<div class="row slideanim">
|
||||
<div class="col-sm-4">
|
||||
Bookmarks : <br>
|
||||
<a href="/bookmarks" target="_blank">my Web Garden</a><br>
|
||||
<a href="https://inconvergent.net/" target="_blank">Inconvergent</a><br>
|
||||
<a href="http://www.datasketch.es/" target="_blank">Data Sketches</a><br>
|
||||
<a href="https://bit101.github.io/lab/dailies/170310.html" target="_blank">bit101-github</a><br>
|
||||
<a href="http://www.imdb.com/title/tt1508021/" target="_blank">being captain zero</a><br>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<p>Contact me :</p>
|
||||
<p><span class="glyphicon glyphicon-map-marker"></span> Shambala</p>
|
||||
<p><span class="glyphicon glyphicon-globe"></span> Employer : Mutiny</p>
|
||||
<p><span class="glyphicon glyphicon-phone"></span> +33 4 8 15 16 23 42</p>
|
||||
<p>
|
||||
<span class="glyphicon glyphicon-envelope"></span>
|
||||
<!--Place the code below where you want the link to be displayed-->
|
||||
<span id="obf"><script>document.getElementById("obf").innerHTML="<n uers=\"znvygb:nyoreg.frnaquvyf@gbcvfgb.arg?fhowrpg=pbagnpg\" gnetrg=\"_oynax\">nyoreg.frnaquvyf@gbcvfgb.arg</n>".replace(/[a-zA-Z]/g,function(c){return String.fromCharCode((c<="Z"?90:122)>=(c=c.charCodeAt(0)+13)?c:c-26);});</script>
|
||||
<noscript><span style="unicode-bidi:bidi-override;direction:rtl;">ten.otsipot@slihdnaes.trebla</span></noscript></span>
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
BTC adresss : <br>
|
||||
<a href="https://www.blockchain.com/btc/address/15V7XfBX2Xn5uKpK3VuVngDg44TSKLtTSh">15V7XfBX2Xn5uKpK3VuVngDg44TSKLtTSh</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="container-fluid bg-grey text-center">
|
||||
<a href="#myPage" title="To Top">
|
||||
<span class="glyphicon glyphicon-chevron-up"></span>
|
||||
|
||||
Reference in New Issue
Block a user