little touches

This commit is contained in:
Open-Steps.org 2015-04-14 12:20:11 +02:00
parent d5d2a33c1a
commit 3ec670b006
3 changed files with 14 additions and 12 deletions

View file

@ -68,7 +68,7 @@ permalink: /about/
<h5>Team</h5> <h5>Team</h5>
<p>SCOPE SESSIONS are curated & realised by a team, that shares passion for visual arts, experimental crossovers of sound and video, multimedia experiences, human interactions and computer technologies.</p> <p>SCOPE SESSIONS are curated & realised by a team, that shares passion for visual arts, experimental crossovers of sound and video, multimedia experiences, human interactions and computer technologies.</p>
<p>We started in summer 2011 with our first session, developed in cooperation with and hosted by Atelier Überall.</p> <p>We started in summer 2011 with our first session, developed in cooperation with and hosted by Atelier Überall (now Atelier Äuglein)</p>
<p>Since then we invited artists to share their unique approaches to an increasing audience. Hope you like it! See you at one of our sessions.</p> <p>Since then we invited artists to share their unique approaches to an increasing audience. Hope you like it! See you at one of our sessions.</p>
<div class="team row"> <div class="team row">
@ -93,8 +93,8 @@ permalink: /about/
</li> </li>
<li> <li>
<p><a class="button hvr-sweep-to-top" target="_blank" href="http://kiritanflux.de/">Tobias Last aka Kiritan Flux</a> <p><a class="button hvr-sweep-to-top" target="_blank" href="http://flux.vision">Tobias Last aka Kiritan Flux</a>
</br>visualist, media artist</p> </br>visualist, media artist, developer</p>
</li> </li>
<li> <li>
@ -112,7 +112,6 @@ permalink: /about/
<h5>Former team members and collaborators</h5> <h5>Former team members and collaborators</h5>
<ul> <ul>
<li> <li>
<p><a class="button hvr-sweep-to-top" target="_blank" href="#">Silke Müller aka Eklis Rellüm</a> <p><a class="button hvr-sweep-to-top" target="_blank" href="#">Silke Müller aka Eklis Rellüm</a>
</br>culture consulting, project manager, producer</p> </br>culture consulting, project manager, producer</p>
@ -124,15 +123,16 @@ permalink: /about/
</li> </li>
<li> <li>
<p><a class="button hvr-sweep-to-top" target="_blank" href="#">Lucy Benson</a> <p><a class="button hvr-sweep-to-top" target="_blank" href="http://lucybenson.net">Lucy Benson</a>
</br>audiovisual artist, researcher</a>
</p> </p>
</li> </li>
<li> <li>
<p><a class="button hvr-sweep-to-top" target="_blank" href="#">Ludovic Bablon</a> <p><a class="button hvr-sweep-to-top" target="_blank" href="http://www.ludovicbablon.fr">Ludovic Bablon</a>
</br>writer, poet, creative services</a>
</p> </p>
</li> </li>
</ul> </ul>
</div> </div>

View file

@ -164,6 +164,7 @@ a:hover {
.event-date { .event-date {
text-align: right; text-align: right;
margin-right: 10px; margin-right: 10px;
width: 100%;
} }
.artist-media { .artist-media {
width: 100%; width: 100%;

View file

@ -1,3 +1,4 @@
var DEBUG = false;
var scrolling = false; var scrolling = false;
var navigatorOpen = false; var navigatorOpen = false;
var topButtonVisible = false; var topButtonVisible = false;
@ -35,7 +36,7 @@ $(document).ready(function() {
}); });
function openTopMenu() { function openTopMenu() {
console.log('openTopMenu'); if (DEBUG) console.log('openTopMenu');
if (!scrolling && !navigatorOpen) { if (!scrolling && !navigatorOpen) {
scrolling = true; scrolling = true;
$(".navigator").slideDown("slow", function() { $(".navigator").slideDown("slow", function() {
@ -46,7 +47,7 @@ $(document).ready(function() {
} }
function closeTopMenu() { function closeTopMenu() {
console.log('closeTopMenu'); if (DEBUG) console.log('closeTopMenu');
if (!scrolling && navigatorOpen) { if (!scrolling && navigatorOpen) {
scrolling = true; scrolling = true;
$('.navigator').slideUp("slow", function() { $('.navigator').slideUp("slow", function() {
@ -57,7 +58,7 @@ $(document).ready(function() {
} }
function showTopButton() { function showTopButton() {
console.log('showTopButton'); if (DEBUG) console.log('showTopButton');
if (!topButtonVisible) { if (!topButtonVisible) {
$('.top-button').fadeTo("slow",1.0, function() { $('.top-button').fadeTo("slow",1.0, function() {
topButtonVisible = true; topButtonVisible = true;
@ -66,7 +67,7 @@ $(document).ready(function() {
} }
function hideTopButton() { function hideTopButton() {
console.log('hideTopButton'); if (DEBUG) console.log('hideTopButton');
if (topButtonVisible) { if (topButtonVisible) {
$('.top-button').fadeTo("slow",0.0, function() { $('.top-button').fadeTo("slow",0.0, function() {
topButtonVisible = false; topButtonVisible = false;
@ -83,7 +84,7 @@ $(document).ready(function() {
navbarHeight += $('.navigator').height() - 40; navbarHeight += $('.navigator').height() - 40;
} }
console.log('scroll ' + $(window).scrollTop() + ' ' + navbarHeight); if (DEBUG) console.log('scroll ' + $(window).scrollTop() + ' ' + navbarHeight);
if (!timeout) { if (!timeout) {
timeout = setTimeout(function() { timeout = setTimeout(function() {
clearTimeout(timeout); clearTimeout(timeout);