-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (121 loc) · 5.1 KB
/
index.html
File metadata and controls
142 lines (121 loc) · 5.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FʅσɯSƙҽƚƈԋ Gαʅʅҽɾყ ¯´•.,¸¸,.•` 🖼️</title>
<meta name="description" content="An experimental way to create with your eyes closed—or almost.">
<link rel="stylesheet" href="styles.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B3VV388X4X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B3VV388X4X');
</script>
<meta name="p:domain_verify" content="fd7d215910ea0cf1c785c7c7cf7a7c0f" />
<!-- End SSL Protocol Config -->
</head>
<!--
) (\_
(( _/{ "-;
)).-' {{ ;'`
HEY U! ( ( ;._ \\ -->
<body>
<br />
<p style="text-align: center; margin: 0 auto; width: fit-content;">
<a href="https://letmeflowsketching.vercel.app/" style="font-size: 10px; text-decoration: none;">english</a> |
<a href="https://letmeflowsketching-vercel-app.translate.goog/?_x_tr_sl=en&_x_tr_tl=pt&_x_tr_hl=pt-BR&_x_tr_pto=wapp"
style="font-size: 10px; text-decoration: none;">português</a>
</p>
<div class="container">
<!-- HEADER -->
<div class="header">
<h1>
<img
src="https://raw.githubusercontent.com/od3zza/flowsketch-gallery/refs/heads/main/images/flowsketch_logo_1.png"
style="max-height: 200px;">
</h1>
<!-- Menu -->
<p>
<center>
<a href="#" class="linkheader" data-modal="modal1">what</a> |
<a href="#" class="linkheader" data-modal="modal2">who</a>
</center>
</p>
<!-- Modals -->
<div id="modal1" class="modal">
<div class="modal-content">
<p>
<center>what</center><br />
<b>FlowSketch</b> is an unconscious creation experience created by <a
href="https://github.com/od3zza">od3zza</a>. Through a browser extension that tracks mouse movements and
clicks, FlowSketch enables the creation of unconscious art, which is formed over time by transforming user
movements into different intensities and sizes of shapes. Right clicks become lines, dots, shapes, and
distortions as random as the colors that are alternated with each left click. Today, we spend so much time
hyper-focused, hyper-active, hyper-confused, and overwhelmed online, that small moments of pleasure, like
painting or even resting our eyes and abstracting, disappear. Unconscious painting through this application
is not necessarily an art technique or method, but a curious exploration of what we can unconsciously build,
which uncovers so much of our behavior and emotions.<br/>
</p>
</div>
</div>
<div id="modal2" class="modal">
<div class="modal-content">
<p>
<center>who</center><br />
<b>od3zza</b>, also known as uoshi, is a multidisciplinary designer and filmmaker from Brazil.
From a very young age, od3zza has been deeply involved in the arts. Throughout their career, they've
experimented with various art forms, including painting, illustration, sculpture, tattooing, digital arts,
cinema, and more recently, game design. In their practice, you'll often find experimentation, hybridization,
and narratives that reflect themes of loss, solitude, and contemplation. <span class="close">×</span>
</p>
</div>
</div>
</div>
<!-- GALERIA DE OBRAS -->
<div class="gallery" id="gallery">
<!-- As obras serão carregadas automaticamente pelo script.js a partir do images.js -->
<div class="loading">
<p>🎨 Loading works...</p>
</div>
</div>
</div>
<!-- FOOTER
<div class="footer">
<p>Criado com ❤️ pela extensão <a href="#" class="footer-link">FlowSketch</a></p>
<p>Cada movimento conta uma história única</p>
</div> -->
<!-- Scripts -->
<!-- IMPORTANTE: images.js deve vir ANTES do script.js -->
<script src="images.js"></script>
<script src="gallery.js"></script>
<script>
function openModal(modalId) {
document.getElementById(modalId).style.display = "block";
}
function closeModal(modalId) {
document.getElementById(modalId).style.display = "none";
}
document.querySelectorAll(".linkheader").forEach((link) => {
link.addEventListener("click", function (event) {
event.preventDefault();
const modalId = link.getAttribute("data-modal");
openModal(modalId);
});
});
document.querySelectorAll(".close").forEach((closeButton) => {
closeButton.addEventListener("click", function () {
const modal = closeButton.closest(".modal");
closeModal(modal.id);
});
});
window.onclick = function (event) {
if (event.target.classList.contains("modal")) {
closeModal(event.target.id);
}
};
</script>
</body>
</html>