parent
ae9f20acce
commit
6d38d7b1e9
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
File diff suppressed because one or more lines are too long
@ -0,0 +1,279 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: Fengardo;
|
||||||
|
src: url("fonts/fengardoneue_regular-webfont.woff");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Fengardo;
|
||||||
|
src: url("fonts/fengardoneue_black-webfont.woff");
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--text: #111;
|
||||||
|
--wireframe: #111;
|
||||||
|
--background: #ff6347;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body,
|
||||||
|
html {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background-color: var(--background);
|
||||||
|
color: var(--text);
|
||||||
|
font-family: Fengardo;
|
||||||
|
font-size: 21px;
|
||||||
|
line-height: 1.6;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container > * {
|
||||||
|
flex-basis: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.atlas {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
border-right: solid 1px var(--wireframe);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
|
height: 100px;
|
||||||
|
width: 100%;
|
||||||
|
border-top: solid 1px var(--wireframe);
|
||||||
|
}
|
||||||
|
|
||||||
|
.libretto {
|
||||||
|
overflow-y: scroll;
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
.libretto > * {
|
||||||
|
border-bottom: solid 1px var(--wireframe);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution:last-of-type {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.atlas svg {
|
||||||
|
padding: 32px;
|
||||||
|
width: 100%;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.atlas svg #live-path {
|
||||||
|
color: currentColor;
|
||||||
|
stroke-dasharray: 18159;
|
||||||
|
stroke-dashoffset: 18159;
|
||||||
|
animation: dash 300s linear forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes dash {
|
||||||
|
to {
|
||||||
|
stroke-dashoffset: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
path[data-link] {
|
||||||
|
pointer-events: all;
|
||||||
|
pointer-events: bounding-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.moment {
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cover {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
min-height: 100vh;
|
||||||
|
padding: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cover .release {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cover .title {
|
||||||
|
font-size: 64px;
|
||||||
|
margin: 64px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cover .description {
|
||||||
|
max-width: 50ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl {
|
||||||
|
margin-top: 128px;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
margin-top: 24px;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
max-width: 60ch;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#reference {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution {
|
||||||
|
padding: 16px;
|
||||||
|
padding-bottom: 64px;
|
||||||
|
border-bottom: 1px solid currentColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution .title {
|
||||||
|
margin: 0;
|
||||||
|
margin-top: 0;
|
||||||
|
font-size: 42px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution .meta {
|
||||||
|
/* font-size: 0.8em; */
|
||||||
|
/* font-weight: bold; */
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution .audio {
|
||||||
|
margin-bottom: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution .player {
|
||||||
|
border: 1px solid currentColor;
|
||||||
|
outline: none;
|
||||||
|
background: none;
|
||||||
|
padding: 4px 8px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul,
|
||||||
|
ol {
|
||||||
|
margin: 16px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution .description {
|
||||||
|
font-style: italic;
|
||||||
|
|
||||||
|
padding-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution .content h3,
|
||||||
|
.contribution .content h2 {
|
||||||
|
font-size: 28px;
|
||||||
|
margin: 16px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution .content ol {
|
||||||
|
padding-inline-start: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contribution img {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
white-space: pre-line;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content p,
|
||||||
|
.content h2 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content img {
|
||||||
|
width: 100%;
|
||||||
|
object-fit: contain;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btn-print {
|
||||||
|
display: inline-block;
|
||||||
|
color: var(--text);
|
||||||
|
margin-top: 32px;
|
||||||
|
background: none;
|
||||||
|
border: 1px solid var(--text);
|
||||||
|
padding: 4px 8px;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btn-print:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
position: relative;
|
||||||
|
color: currentColor;
|
||||||
|
pointer-events: all;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
@namespace svg url(http://www.w3.org/2000/svg);
|
||||||
|
/* Necessary to select only SVG <a> elements, and not also HTML's.
|
||||||
|
See warning below */
|
||||||
|
|
||||||
|
svg|a:link,
|
||||||
|
svg|a:visited {
|
||||||
|
cursor: pointer;
|
||||||
|
color: currentColor;
|
||||||
|
pointer-events: all;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg|g {
|
||||||
|
pointer-events: all;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 991.98px) {
|
||||||
|
.container {
|
||||||
|
height: auto;
|
||||||
|
width: 100%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.libretto {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.atlas svg {
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,84 @@
|
|||||||
|
let source_url = ""
|
||||||
|
let partyRef = document.getElementById("partyRef")
|
||||||
|
let seatRef = document.querySelector(".seat")
|
||||||
|
let hemicycle = document.getElementsByClassName("hemicycle")[0]
|
||||||
|
let row = 5
|
||||||
|
|
||||||
|
let btn = document.getElementById("info-btn")
|
||||||
|
let info = document.getElementById("info")
|
||||||
|
|
||||||
|
fetch("https://hub.xpub.nl/soupboat/the-parliament/")
|
||||||
|
.then((response) => response.json())
|
||||||
|
.then((data) => {
|
||||||
|
source_url = data.base_url;
|
||||||
|
populateSeats(data.parliament)
|
||||||
|
});
|
||||||
|
|
||||||
|
function populateSeats(parliament) {
|
||||||
|
for (const group of Object.keys(parliament)){ //gets the parent's keys
|
||||||
|
let party = partyRef.cloneNode(true);
|
||||||
|
let partyName = party.querySelector("h4")
|
||||||
|
party.id = group;
|
||||||
|
|
||||||
|
partyName.innerHTML = group;
|
||||||
|
for (representative of parliament[group]){
|
||||||
|
let seat = seatRef.cloneNode(true);
|
||||||
|
seat.querySelector(".label").innerHTML = representative.who;
|
||||||
|
seat.id = representative.who;
|
||||||
|
let filename = source_url + group + '/' + representative.filename;
|
||||||
|
let audio = new Audio(filename)
|
||||||
|
audio.addEventListener("canplaythrough", (e) => {
|
||||||
|
console.log(filename);
|
||||||
|
let mic = seat.querySelector(".mic");
|
||||||
|
mic.innerHTML = "Talk";
|
||||||
|
mic.addEventListener("click", () => {
|
||||||
|
console.log(filename);
|
||||||
|
if (audio.paused) {
|
||||||
|
audio.play();
|
||||||
|
mic.innerHTML="Pause";
|
||||||
|
mic.style.color ="white";
|
||||||
|
mic.style.background = "red"
|
||||||
|
} else {
|
||||||
|
audio.pause();
|
||||||
|
mic.innerHTML="Talk"
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
audio.addEventListener("ended", () => {
|
||||||
|
audio.pause();
|
||||||
|
audio.currentTime = 0;
|
||||||
|
mic.style.background = "white"
|
||||||
|
mic.style.color ="red";
|
||||||
|
});
|
||||||
|
});
|
||||||
|
party.appendChild(seat);
|
||||||
|
}
|
||||||
|
|
||||||
|
hemicycle.appendChild(party);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// info
|
||||||
|
btn.addEventListener("click", showInfo)
|
||||||
|
|
||||||
|
|
||||||
|
function showInfo(){
|
||||||
|
|
||||||
|
if (info.style.display === "none"){
|
||||||
|
btn.innerHTML = "X";
|
||||||
|
console.log("click");
|
||||||
|
info.style.display = "block";
|
||||||
|
} else {
|
||||||
|
btn.innerHTML = "?";
|
||||||
|
info.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
TODO
|
||||||
|
- upload svg
|
||||||
|
- loop through the elements to associate seat to each of them
|
||||||
|
- create label
|
||||||
|
- rotation?
|
||||||
|
*/
|
@ -1,279 +1,109 @@
|
|||||||
@font-face {
|
|
||||||
font-family: Fengardo;
|
|
||||||
src: url("fonts/fengardoneue_regular-webfont.woff");
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: Fengardo;
|
|
||||||
src: url("fonts/fengardoneue_black-webfont.woff");
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root{
|
||||||
--text: #111;
|
--color1: rgb(105, 105, 255);
|
||||||
--wireframe: #111;
|
|
||||||
--background: #ff6347;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
body,
|
body, html{
|
||||||
html {
|
margin: 0;
|
||||||
margin: 0;
|
padding: 0;
|
||||||
padding: 0;
|
color: var(--color1);
|
||||||
background-color: var(--background);
|
font-family: sans-serif;
|
||||||
color: var(--text);
|
}
|
||||||
font-family: Fengardo;
|
.btn{
|
||||||
font-size: 21px;
|
position: fixed;
|
||||||
line-height: 1.6;
|
z-index: 99;
|
||||||
|
top: 16px;
|
||||||
overflow: hidden;
|
left: 16px;
|
||||||
}
|
font-size: 36px;
|
||||||
|
font-family: sans-serif;
|
||||||
.container {
|
text-align: center;
|
||||||
display: flex;
|
border: solid 2px var(--color1);
|
||||||
width: 100vw;
|
width: 48px;
|
||||||
height: 100vh;
|
height: 48px;
|
||||||
margin: 0;
|
border-radius: 50%;
|
||||||
overflow: hidden;
|
background-color: white;
|
||||||
}
|
padding: 2px 0;
|
||||||
|
}
|
||||||
.container > * {
|
.btn:hover{
|
||||||
flex-basis: 50%;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
.info{
|
||||||
.atlas {
|
display: none;
|
||||||
position: relative;
|
font-size: 2.5ch;
|
||||||
display: flex;
|
position: fixed;
|
||||||
flex-direction: column;
|
top: 0;
|
||||||
justify-content: space-between;
|
left: 0;
|
||||||
border-right: solid 1px var(--wireframe);
|
z-index: 1;
|
||||||
}
|
width: 50vw;
|
||||||
|
height: 100vh;
|
||||||
.info {
|
background-color: white;
|
||||||
display: flex;
|
border: solid 2px var(--color1);
|
||||||
justify-content: space-around;
|
overflow: auto;
|
||||||
align-items: center;
|
padding-left: 16px;
|
||||||
height: 100px;
|
}
|
||||||
width: 100%;
|
h2{
|
||||||
border-top: solid 1px var(--wireframe);
|
margin: 0;
|
||||||
}
|
margin-top: 96px;
|
||||||
|
font-weight: normal;
|
||||||
.libretto {
|
|
||||||
overflow-y: scroll;
|
|
||||||
scroll-behavior: smooth;
|
|
||||||
}
|
|
||||||
|
|
||||||
.libretto > * {
|
|
||||||
border-bottom: solid 1px var(--wireframe);
|
|
||||||
}
|
|
||||||
|
|
||||||
.contribution:last-of-type {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.atlas svg {
|
|
||||||
padding: 32px;
|
|
||||||
width: 100%;
|
|
||||||
overflow: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
.atlas svg #live-path {
|
|
||||||
color: currentColor;
|
|
||||||
stroke-dasharray: 18159;
|
|
||||||
stroke-dashoffset: 18159;
|
|
||||||
animation: dash 300s linear forwards;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes dash {
|
|
||||||
to {
|
|
||||||
stroke-dashoffset: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
path[data-link] {
|
|
||||||
pointer-events: all;
|
|
||||||
pointer-events: bounding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.moment {
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
min-height: 100vh;
|
|
||||||
padding: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover .release {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover .title {
|
|
||||||
font-size: 64px;
|
|
||||||
margin: 64px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cover .description {
|
|
||||||
max-width: 50ch;
|
|
||||||
}
|
|
||||||
|
|
||||||
dl {
|
|
||||||
margin-top: 128px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dt {
|
dt {
|
||||||
margin-top: 24px;
|
font-style: italic;
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
dd {
|
|
||||||
max-width: 60ch;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.index {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#reference {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contribution {
|
|
||||||
padding: 16px;
|
|
||||||
padding-bottom: 64px;
|
|
||||||
border-bottom: 1px solid currentColor;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.contribution .title {
|
.hemicycle{
|
||||||
margin: 0;
|
display: flex;
|
||||||
margin-top: 0;
|
flex-flow: column wrap;
|
||||||
font-size: 42px;
|
align-content: stretch;
|
||||||
|
justify-content: right;
|
||||||
|
/* width: 100vw; */
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
h1{
|
||||||
.contribution .meta {
|
font-size: 60px;
|
||||||
/* font-size: 0.8em; */
|
text-align: center;
|
||||||
/* font-weight: bold; */
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contribution .audio {
|
|
||||||
margin-bottom: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contribution .player {
|
|
||||||
border: 1px solid currentColor;
|
|
||||||
outline: none;
|
|
||||||
background: none;
|
|
||||||
padding: 4px 8px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul,
|
#partyRef,
|
||||||
ol {
|
#seatRef{
|
||||||
margin: 16px 0;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.party{
|
||||||
.contribution .description {
|
/* border: solid 1px black; */
|
||||||
font-style: italic;
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
padding-bottom: 8px;
|
flex-wrap: wrap;
|
||||||
|
align-content: flex-start;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 8px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contribution .content h3,
|
h4{
|
||||||
.contribution .content h2 {
|
width: 160px;
|
||||||
font-size: 28px;
|
|
||||||
margin: 16px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.contribution .content ol {
|
|
||||||
padding-inline-start: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contribution img {
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
.seats{
|
||||||
white-space: pre-line;
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-content: center;
|
||||||
|
margin: 4px 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content p,
|
.seat .mic{
|
||||||
.content h2 {
|
width: 80px;
|
||||||
margin: 0;
|
height: 80px;
|
||||||
|
border-radius: 10%;
|
||||||
|
border: solid 3px var(--color1);
|
||||||
|
background-color: white;
|
||||||
|
color: currentColor;
|
||||||
}
|
}
|
||||||
|
.label{
|
||||||
.content img {
|
width: 90px;
|
||||||
width: 100%;
|
overflow-wrap: break-word;
|
||||||
object-fit: contain;
|
font-size: 1.5ch;
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
#btn-print {
|
|
||||||
display: inline-block;
|
|
||||||
color: var(--text);
|
|
||||||
margin-top: 32px;
|
|
||||||
background: none;
|
|
||||||
border: 1px solid var(--text);
|
|
||||||
padding: 4px 8px;
|
|
||||||
font-size: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#btn-print:hover {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
position: relative;
|
|
||||||
color: currentColor;
|
|
||||||
pointer-events: all;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
@namespace svg url(http://www.w3.org/2000/svg);
|
|
||||||
/* Necessary to select only SVG <a> elements, and not also HTML's.
|
|
||||||
See warning below */
|
|
||||||
|
|
||||||
svg|a:link,
|
|
||||||
svg|a:visited {
|
|
||||||
cursor: pointer;
|
|
||||||
color: currentColor;
|
|
||||||
pointer-events: all;
|
|
||||||
}
|
|
||||||
|
|
||||||
svg|g {
|
|
||||||
pointer-events: all;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 991.98px) {
|
|
||||||
.container {
|
|
||||||
height: auto;
|
|
||||||
width: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.libretto {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.atlas svg {
|
|
||||||
padding: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue