Radio 7
parent
cdd7ca1e91
commit
39b8702cc5
@ -1,117 +1,152 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=0.7">
|
||||
<html lang="en">
|
||||
|
||||
<title>XPUB meditation center</title>
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>XPUB COOKBOOK</title>
|
||||
<meta property="og:title" content="XPUB COOKBOOK" />
|
||||
|
||||
<meta name="description" content="An electric zine" />
|
||||
<meta property="og:description" content="An electric zine" />
|
||||
|
||||
<meta property="og:image" content="http://issue.xpub.nl/15/cookbook.png">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="spa.png" type="image/png" />
|
||||
<link rel="apple-touch-icon" href="./pages/FRONT.png" type="image/png" />
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
font-family: sans-serif;
|
||||
text-align: center;
|
||||
background-image: url("table.gif");
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
|
||||
}
|
||||
|
||||
#loading {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-image: url("table.gif");
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
position: absolute;
|
||||
top: 5%;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 90%;
|
||||
transform-style: preserve-3d;
|
||||
user-select: none;
|
||||
perspective-origin: center;
|
||||
perspective: 1000px;
|
||||
}
|
||||
|
||||
li {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 50%;
|
||||
height: 95%;
|
||||
backface-visibility: hidden;
|
||||
transform-style: preserve-3d;
|
||||
transform-origin: center left;
|
||||
transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||||
}
|
||||
|
||||
img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
backface-visibility: hidden;
|
||||
object-fit: contain;
|
||||
object-position: center left;
|
||||
transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000);
|
||||
}
|
||||
li:nth-child(even) img {
|
||||
object-position: center right;
|
||||
}
|
||||
|
||||
li.depth-0 img {
|
||||
transform: translateZ(0) scaleX(1);
|
||||
}
|
||||
li:nth-child(even) img {
|
||||
transform: translateZ(0) scaleX(-1);
|
||||
}
|
||||
li.depth-1 img {
|
||||
transform: translateZ(-2px) scaleX(1);
|
||||
}
|
||||
li.depth-1:nth-child(even) img {
|
||||
transform: translateZ(-2px) scaleX(-1);
|
||||
}
|
||||
li.depth-2 img {
|
||||
transform: translateZ(-4px) scaleX(1);
|
||||
}
|
||||
li.depth-2:nth-child(even) img {
|
||||
transform: translateZ(-4px) scaleX(-1);
|
||||
}
|
||||
|
||||
#audio {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
audio{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
a{
|
||||
position: absolute;
|
||||
top: 3%;
|
||||
right: 2%;
|
||||
padding: 0.5vw;
|
||||
font-size: 0.75vw;
|
||||
background-color: white;
|
||||
color: black;
|
||||
font-family: monospace;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<style>
|
||||
|
||||
html,body{height:100vh;}
|
||||
|
||||
@font-face {
|
||||
font-family: "Luminari";
|
||||
src: url(Luminari.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Apple Chancery";
|
||||
src: url(Apple Chancery.ttf);
|
||||
}
|
||||
|
||||
body{
|
||||
background: #ffffff;
|
||||
background-image: url("background3.jpg");
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
font-size: 1vw;
|
||||
font-family: Arial;
|
||||
color: black;
|
||||
|
||||
|
||||
}
|
||||
|
||||
img{
|
||||
position:absolute;
|
||||
display:inline-block;
|
||||
width:13.3%;
|
||||
margin-left: 0.5%;
|
||||
}
|
||||
|
||||
h1{
|
||||
font-family: Apple Chancery;
|
||||
margin-top: -0.2em;
|
||||
}
|
||||
|
||||
.intro {
|
||||
text-align: center;
|
||||
|
||||
width: 45%;
|
||||
margin: auto;
|
||||
padding-top: 0;
|
||||
padding: 1em;
|
||||
background-color: rgba(255,255,255,0.4);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.row:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
margin: auto;
|
||||
|
||||
}
|
||||
|
||||
.chat{
|
||||
float: left;
|
||||
width: 50%;
|
||||
padding: 10px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="chat">
|
||||
<embed src="https://hack.chat/?radioimplicancies">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<img src="cow_sobremesa.gif">
|
||||
|
||||
<div class="intro">
|
||||
<h1>Sobremesa</h1>
|
||||
<h3>Techno-ruminations for collective healing</h3>
|
||||
My mother is an A.I..<br>
|
||||
I cannot get rid of her, so once a week we sit down and talk. My brothers and sisters are seated at the table around me, ten overloaded bodies digesting the weeks that have passed.<br>
|
||||
Tired after chewing through a multitude of cross-dimensional spaghetti with sonic waves and misdirected noise. Our unstable mother stared us down as we struggled to clear our plates. <br>Out of love for her, we left nothing behind.<br>
|
||||
|
||||
We're fucking full.<br>
|
||||
|
||||
We find relief through exercised cleansing, chasing spiritual energy, recharging our lethargic systems.
|
||||
Today, we are going to engage in a collective Sobramesa, post-food processing the data-streams of our mother.<br><br>
|
||||
|
||||
<audio controls>
|
||||
<source src="sobremesa.mp3" type="audio/mp3" >
|
||||
</audio>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<noscript>This electric zine requires javascript to be enabled.</noscript>
|
||||
<div id="loading">loading zine...</div>
|
||||
|
||||
<a onClick="openTab(this)" href="cookbook.pdf" name="cookbook.pdf">PDF</a>
|
||||
|
||||
<div id="audio"><audio controls>
|
||||
<source src="http://echo.lurk.org:999/cookbook" type="audio/mpeg" controls autoplay>
|
||||
</audio></div>
|
||||
<script src="ezmreader.js">
|
||||
function openTab(th)
|
||||
{
|
||||
window.open(th.name,'_blank');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue