new standalone git repository for this Special Issue
After Width: | Height: | Size: 244 KiB |
After Width: | Height: | Size: 282 KiB |
After Width: | Height: | Size: 197 KiB |
After Width: | Height: | Size: 207 KiB |
After Width: | Height: | Size: 290 KiB |
After Width: | Height: | Size: 284 KiB |
After Width: | Height: | Size: 266 KiB |
After Width: | Height: | Size: 273 KiB |
After Width: | Height: | Size: 128 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 5.6 KiB |
@ -0,0 +1,89 @@
|
|||||||
|
;(function(){
|
||||||
|
var msg = "IRIS version 0.5";
|
||||||
|
var size = 14;
|
||||||
|
var circleY = 0.75; var circleX = 2;
|
||||||
|
var letter_spacing = 5;
|
||||||
|
var diameter = 10;
|
||||||
|
var rotation = 0.4;
|
||||||
|
var speed = 0.3;
|
||||||
|
|
||||||
|
if (!window.addEventListener && !window.attachEvent || !document.createElement) return;
|
||||||
|
|
||||||
|
msg = msg.split('');
|
||||||
|
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
|
||||||
|
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
|
||||||
|
|
||||||
|
o = document.createElement('div'), oi = document.createElement('div'),
|
||||||
|
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,
|
||||||
|
|
||||||
|
mouse = function(e){
|
||||||
|
e = e || window.event;
|
||||||
|
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
|
||||||
|
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
|
||||||
|
},
|
||||||
|
|
||||||
|
makecircle = function(){ // rotation/positioning
|
||||||
|
if(init.nopy){
|
||||||
|
o.style.top = (b || document.body).scrollTop + 'px';
|
||||||
|
o.style.left = (b || document.body).scrollLeft + 'px';
|
||||||
|
};
|
||||||
|
|
||||||
|
currStep -= rotation;
|
||||||
|
|
||||||
|
for (var d, i = n; i > -1; --i){ // makes the circle
|
||||||
|
|
||||||
|
d = document.getElementById('iemsg' + i).style;
|
||||||
|
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
|
||||||
|
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
drag = function(){ // makes the resistance
|
||||||
|
y[0] = Y[0] += (ymouse - Y[0]) * speed;
|
||||||
|
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
|
||||||
|
for (var i = n; i > 0; --i){
|
||||||
|
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
|
||||||
|
x[i] = X[i] += (x[i-1] - X[i]) * speed;
|
||||||
|
};
|
||||||
|
|
||||||
|
makecircle();
|
||||||
|
},
|
||||||
|
|
||||||
|
init = function(){ // appends message divs, & sets initial values for positioning arrays
|
||||||
|
|
||||||
|
if(!isNaN(window.pageYOffset)){
|
||||||
|
ymouse += window.pageYOffset;
|
||||||
|
xmouse += window.pageXOffset;
|
||||||
|
} else init.nopy = true;
|
||||||
|
for (var d, i = n; i > -1; --i){
|
||||||
|
|
||||||
|
d = document.createElement('div'); d.id = 'iemsg' + i;
|
||||||
|
d.style.height = d.style.width = a + 'px';
|
||||||
|
d.appendChild(document.createTextNode(msg[i]));
|
||||||
|
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
o.appendChild(oi); document.body.appendChild(o);
|
||||||
|
setInterval(drag, 25);
|
||||||
|
},
|
||||||
|
|
||||||
|
ascroll = function(){
|
||||||
|
ymouse += window.pageYOffset;
|
||||||
|
xmouse += window.pageXOffset;
|
||||||
|
window.removeEventListener('scroll', ascroll, false);
|
||||||
|
};
|
||||||
|
|
||||||
|
o.id = 'outerCircleText'; o.style.fontSize = size + 'px';
|
||||||
|
|
||||||
|
if (window.addEventListener){
|
||||||
|
window.addEventListener('load', init, false);
|
||||||
|
document.addEventListener('mouseover', mouse, false);
|
||||||
|
document.addEventListener('mousemove', mouse, false);
|
||||||
|
if (/Apple/.test(navigator.vendor))
|
||||||
|
window.addEventListener('scroll', ascroll, false);
|
||||||
|
}
|
||||||
|
else if (window.attachEvent){
|
||||||
|
window.attachEvent('onload', init);
|
||||||
|
document.attachEvent('onmousemove', mouse);
|
||||||
|
};
|
||||||
|
})();
|
After Width: | Height: | Size: 131 KiB |
@ -0,0 +1,80 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: "Vegur Regular";
|
||||||
|
src: url("fonts/Vegur-Regular.otf");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Vegur Light";
|
||||||
|
src: url("fonts/Vegur-Light.otf");
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: #9200e5;
|
||||||
|
background-image: url("img/iris.jpg");
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
background-size: 100%;
|
||||||
|
background-attachment: fixed;
|
||||||
|
font-size: 16px;
|
||||||
|
|
||||||
|
@media (max-width: 1000px) {
|
||||||
|
font-size: calc(12px + .4vw);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
text-align: center;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-family: "Vegur Regular", sans-serif;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
flex-direction: column;
|
||||||
|
text-align: center;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 12rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 6rem;
|
||||||
|
letter-spacing: -0.2rem;
|
||||||
|
line-height: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 3rem;
|
||||||
|
font-family: "Vegur Light";
|
||||||
|
letter-spacing: -0.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
header p, footer p {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
header p.italic, footer p.italic {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
main p {
|
||||||
|
line-height: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blink {
|
||||||
|
animation: blinker 1s step-end infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:active, a:visited {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
v2.0 | 20110126
|
||||||
|
License: none (public domain)
|
||||||
|
*/
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
@ -0,0 +1,339 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: "Arial";
|
||||||
|
src: url("font/arial.ttf");
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Arial Narrow";
|
||||||
|
src: url("font/Arial Narrow.ttf");
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-size: calc(8px + 0.7vw);
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
scrollbar-width: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
color: black;
|
||||||
|
display: inline;
|
||||||
|
clear: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover, a.get:hover, a.menus:hover{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #972fe8;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited{
|
||||||
|
text-decoration: none;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.back{
|
||||||
|
margin-left: 30vw;
|
||||||
|
width: 70vw;
|
||||||
|
height: 94vh;
|
||||||
|
position: fixed;
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topdots{
|
||||||
|
position: fixed;
|
||||||
|
top: 0px;
|
||||||
|
height: 4vh;
|
||||||
|
width: 30vw;
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topdots img{
|
||||||
|
width: 80%;
|
||||||
|
margin-left: 10%;
|
||||||
|
margin-top: 1vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bottomdots{
|
||||||
|
position: fixed;
|
||||||
|
bottom: 6vh;
|
||||||
|
height: 4vh;
|
||||||
|
width: 30vw;
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bottomdots img{
|
||||||
|
width: 80%;
|
||||||
|
margin-left: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left{
|
||||||
|
position: fixed;
|
||||||
|
margin-top: 4vh;
|
||||||
|
height: 86vh;
|
||||||
|
width: 30vw;
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
#leftheader{
|
||||||
|
font-family: "Arial Narrow", Helvetica, sans-serif;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
font-size: calc(6px + 0.5vw);
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallerywrapper{
|
||||||
|
margin-top: 4vh;
|
||||||
|
margin-left: 10%;
|
||||||
|
width: 80%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallerywrapper img{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
background-color: #972fe8;
|
||||||
|
color: white;
|
||||||
|
font-size: calc(6px + 0.7vw);
|
||||||
|
font-style: italic;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0
|
||||||
|
width: 100vw;
|
||||||
|
height: 6vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box{
|
||||||
|
text-align: center;
|
||||||
|
width: 100vw;
|
||||||
|
height: 6vh;
|
||||||
|
line-height: 6vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
video{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
main{
|
||||||
|
position: fixed;
|
||||||
|
left: 30vw;
|
||||||
|
margin-top: 4vh;
|
||||||
|
margin-left: 3vw;
|
||||||
|
height: 74vh;
|
||||||
|
width: 64vw;
|
||||||
|
overflow-y: scroll;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right{
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
margin-top: 4vh;
|
||||||
|
width: 70vw;
|
||||||
|
left: 30vw;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.headeright{
|
||||||
|
font-family: "Arial", Helvetica, sans-serif;
|
||||||
|
width: 70vw;
|
||||||
|
font-size: calc(6px + 0.5vw);
|
||||||
|
}
|
||||||
|
|
||||||
|
.block{
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text{
|
||||||
|
line-height: 115%;
|
||||||
|
padding-top: 8vh;
|
||||||
|
margin-left: 2vw;
|
||||||
|
margin-right: 15vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bo{
|
||||||
|
width: 30vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2{
|
||||||
|
padding-bottom: 3vh;
|
||||||
|
padding-top: 1vh;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: #972fe8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#colophon2{
|
||||||
|
padding-bottom: 5vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* MOUSE OUTER CIRCLE!!!!!!!!!!!!! */
|
||||||
|
#outerCircleText {
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: bold;
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
color: #000;
|
||||||
|
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
#outerCircleText div {position: relative;}
|
||||||
|
|
||||||
|
#outerCircleText div div {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
/* MOUSE OUTER CIRCLE!!!!!!!!!!!!! */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Slideshow container */
|
||||||
|
.slideshow-container {
|
||||||
|
margin-top: 4vh;
|
||||||
|
margin-left: 10%;
|
||||||
|
width: 80%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Position the "next button" to the right */
|
||||||
|
.next {
|
||||||
|
width: 12vw;
|
||||||
|
text-align: right;
|
||||||
|
font-family: "Arial Narrow", Helvetica, sans-serif;
|
||||||
|
font-size: calc(6px + 0.5vw);
|
||||||
|
position: fixed;
|
||||||
|
bottom: 15vh;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.prev {
|
||||||
|
text-align: left;
|
||||||
|
font-family: "Arial Narrow", Helvetica, sans-serif;
|
||||||
|
font-size: calc(6px + 0.5vw);
|
||||||
|
position: fixed;
|
||||||
|
bottom: 15vh;;
|
||||||
|
left: 3vw;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next:hover, .prev:hover{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #972fe8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#phone{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 635px) {
|
||||||
|
|
||||||
|
#desktop{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#phone{
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
body{
|
||||||
|
background-color: #dbdcde;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.back{
|
||||||
|
display: none;
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left{
|
||||||
|
position: static;
|
||||||
|
width: 100vw;
|
||||||
|
height: 60vh;
|
||||||
|
overflow:hidden;
|
||||||
|
margin-top: 2vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.text{
|
||||||
|
margin-left: 9vw;
|
||||||
|
margin-right: 7vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#colophon2{
|
||||||
|
padding-bottom: 2vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
main{
|
||||||
|
position: static;
|
||||||
|
width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
margin-top: 65vh;
|
||||||
|
overflow:hidden;
|
||||||
|
height: auto;
|
||||||
|
margin-left: -30vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right{
|
||||||
|
position: absolute;
|
||||||
|
width: 100vw;
|
||||||
|
margin-top: 0vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.headeright{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block{
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#leftheader{
|
||||||
|
position: static;
|
||||||
|
top: 3vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Position the "next button" to the right */
|
||||||
|
.next {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prev {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topdots{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#bottomdots{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
font-size: calc(7px + 0.9vw);
|
||||||
|
height: 4vh;
|
||||||
|
}
|
||||||
|
.box{
|
||||||
|
height: 4vh;
|
||||||
|
line-height: 4vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bo{
|
||||||
|
width: 40vw;
|
||||||
|
padding-bottom: 20vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|