This commit is contained in:
Set Sakrecoer 2019-07-14 00:51:18 +02:00
parent 444711b40f
commit ca3ba3b70f
5 changed files with 23 additions and 1 deletions

View file

@ -9,3 +9,16 @@
<img src="{{ site.baseurl }}/assets/img/sakrecoer-logo.svg" width="125px" height="125px" alt="Sakrecoer Logo" />
</a>
</div>
{% if page.collection != 'tracks' %}
<script type="text/javascript">
$(window).scroll(function(){
$("#navigation").css("opacity", 0 + $(window).scrollTop() / 250);
});
</script>
{% else %}
<script type="text/javascript">
$(window).scroll(function(){
$("#navigation").css("opacity", 1 - $(window).scrollTop() / 250);
});
</script>
{% endif %}

View file

@ -8,6 +8,7 @@
<link rel="icon" type="image/png" href="{{ site.baseurl }}/touch-icon.png" sizes="192x192">
<link rel="shortcut icon" href="{{ site.baseurl }}/favicon.png" type="image/png" />
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/style2019-07.css" />
<script src="/assets/js/jquery-3.4.1.min.js"></script>
{% include seo.html %}
<style>
body{

View file

@ -82,4 +82,9 @@ layout: default
body {
background-image:url('{{ page.image }}') ;
}
#navigation {
opacity: 1;
}
</style>

View file

@ -369,6 +369,7 @@ min-height: 80vh;
position: fixed;
bottom: 10px;
right: 10px;
opacity: 0;
}
.aboutflex {
display: flex;

2
assets/js/jquery-3.4.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long