little touches
This commit is contained in:
parent
d5d2a33c1a
commit
3ec670b006
3 changed files with 14 additions and 12 deletions
14
3_about.html
14
3_about.html
|
|
@ -68,7 +68,7 @@ permalink: /about/
|
|||
<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>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>
|
||||
|
||||
<div class="team row">
|
||||
|
|
@ -93,8 +93,8 @@ permalink: /about/
|
|||
</li>
|
||||
|
||||
<li>
|
||||
<p><a class="button hvr-sweep-to-top" target="_blank" href="http://kiritanflux.de/">Tobias Last aka Kiritan Flux</a>
|
||||
</br>visualist, media artist</p>
|
||||
<p><a class="button hvr-sweep-to-top" target="_blank" href="http://flux.vision">Tobias Last aka Kiritan Flux</a>
|
||||
</br>visualist, media artist, developer</p>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
|
@ -112,7 +112,6 @@ permalink: /about/
|
|||
<h5>Former team members and collaborators</h5>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<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>
|
||||
|
|
@ -124,15 +123,16 @@ permalink: /about/
|
|||
</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>
|
||||
</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>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -164,6 +164,7 @@ a:hover {
|
|||
.event-date {
|
||||
text-align: right;
|
||||
margin-right: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
.artist-media {
|
||||
width: 100%;
|
||||
|
|
|
|||
11
js/custom.js
11
js/custom.js
|
|
@ -1,3 +1,4 @@
|
|||
var DEBUG = false;
|
||||
var scrolling = false;
|
||||
var navigatorOpen = false;
|
||||
var topButtonVisible = false;
|
||||
|
|
@ -35,7 +36,7 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
function openTopMenu() {
|
||||
console.log('openTopMenu');
|
||||
if (DEBUG) console.log('openTopMenu');
|
||||
if (!scrolling && !navigatorOpen) {
|
||||
scrolling = true;
|
||||
$(".navigator").slideDown("slow", function() {
|
||||
|
|
@ -46,7 +47,7 @@ $(document).ready(function() {
|
|||
}
|
||||
|
||||
function closeTopMenu() {
|
||||
console.log('closeTopMenu');
|
||||
if (DEBUG) console.log('closeTopMenu');
|
||||
if (!scrolling && navigatorOpen) {
|
||||
scrolling = true;
|
||||
$('.navigator').slideUp("slow", function() {
|
||||
|
|
@ -57,7 +58,7 @@ $(document).ready(function() {
|
|||
}
|
||||
|
||||
function showTopButton() {
|
||||
console.log('showTopButton');
|
||||
if (DEBUG) console.log('showTopButton');
|
||||
if (!topButtonVisible) {
|
||||
$('.top-button').fadeTo("slow",1.0, function() {
|
||||
topButtonVisible = true;
|
||||
|
|
@ -66,7 +67,7 @@ $(document).ready(function() {
|
|||
}
|
||||
|
||||
function hideTopButton() {
|
||||
console.log('hideTopButton');
|
||||
if (DEBUG) console.log('hideTopButton');
|
||||
if (topButtonVisible) {
|
||||
$('.top-button').fadeTo("slow",0.0, function() {
|
||||
topButtonVisible = false;
|
||||
|
|
@ -83,7 +84,7 @@ $(document).ready(function() {
|
|||
navbarHeight += $('.navigator').height() - 40;
|
||||
}
|
||||
|
||||
console.log('scroll ' + $(window).scrollTop() + ' ' + navbarHeight);
|
||||
if (DEBUG) console.log('scroll ' + $(window).scrollTop() + ' ' + navbarHeight);
|
||||
if (!timeout) {
|
||||
timeout = setTimeout(function() {
|
||||
clearTimeout(timeout);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue