You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.8 KiB
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// document.addEventListener('DOMContentLoaded', () => {
// const title = document.querySelector('.title');
// const fonts = [
// 'Redaction-Regular',
// 'Redaction_10-Regular',
// 'Redaction_20-Regular',
// 'Redaction_35-Regular',
// 'Redaction_50-Regular',
// 'Redaction_70-Regular',
// 'Redaction_100-Regular'
// ];
// let currentFontIndex = 0;
// title.addEventListener('click', () => {
// currentFontIndex = (currentFontIndex + 1) % fonts.length;
// title.style.fontFamily = fonts[currentFontIndex];
// });
// });
function openLetter() {
$('#letterContents').html(`
<p>
Hi. I made this play for you; its a question to keep us alive together. Is all intimacy about bodies? What happens when our bodies distance intimacy from us?
<br>
Backplaces is a web-based play. A short anthology of poems and stories about vulnerability, intimacy, and the internet. It explores the internet as a place for holding big feelings and intimacy when it is unbearable. As an homage to those who have have been vulnerable with me I created "backplaces". They are tender online spaces for relief and acknowledgement of societal pain.
Some of these stories may evoke memories of pain. As you sit in the audience, know I am with you. If it feels overwhelming, you can step out, take a break, or leave. This isn't choreographed, and I care for you.
<br>
I hope you see what I saw in these stories. Sweet dreams now, and I'll talk to you soon.
<br>
love, Ada
<br><br>
p.s.<br>
If you see yourself, what you have told me or posted online reflected too closely for comfort do not hesitate to reach out to me at 0backplaces@gmail.com
</p>
`);
$('#letterBox').show();
}
function closeLetter() {
$('#letterBox').hide();
}