This repository was archived by the owner on Jan 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 1.28 KB
/
index.html
File metadata and controls
27 lines (24 loc) · 1.28 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0>
<style>
body {padding: 0; margin: 10px;}
a {text-decoration: none; color: black}
</style>
</head>
<body>
<h1>Visual cryptography</h1>
<p><b>Author:</b> Mateusz Grabuszyński</p>
<p><b>Programming language:</b> JavaScript, <u><a href="https://p5js.org/">p5js</a></u> library.</p>
<p><b>Restrictions:</b> Some browsers and browser extensions can block running scripts. Incognito/InPrivate or other mode can be helpful, as well as adding exception to the extension or turning it off. If still fails, please use other browser.</p>
<button type="button" id="cipherParent"><a href="cipher.html" target="cipher-decipher">Cipher</a></button>
<button type="button" id="decipherParent"><a href="decipher.html" target="cipher-decipher">Decipher</a></button><br />
<iframe src="cipher.html" name="cipher-decipher" frameborder="0" width="100%-20px" scrolling="no"
style="resize: height;"
onload="this.style.height=this.contentDocument.body.scrollHeight+20 +'px';"
onresize="this.style.height=this.contentDocument.body.scrollHeight+20 +'px';"
></iframe>
</body>
</html>