mirror of
https://github.com/Cametendo/EMVs-Creative-coding.git
synced 2026-06-20 17:45:02 +02:00
Push after two months, oops
This commit is contained in:
@@ -3,7 +3,71 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Document</title>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<title>Creative Coding Website</title>
|
||||
</head>
|
||||
<body></body>
|
||||
<body>
|
||||
<h1>Rectangles... Just rectangles</h1>
|
||||
<div>
|
||||
<iframe
|
||||
src="/Week-1/rectangles.html"
|
||||
style="height: 800px"
|
||||
scrolling="no"
|
||||
></iframe>
|
||||
</div>
|
||||
<h1>Images</h1>
|
||||
<h3>styles (non-interactive):</h3>
|
||||
<div>
|
||||
<iframe src="/Week-2/Pictures/styles.html" style="height: 170px"></iframe>
|
||||
</div>
|
||||
<h3>basic image</h3>
|
||||
<div>
|
||||
<iframe
|
||||
src="/Week-2/Pictures/image.html"
|
||||
style="height: 815px"
|
||||
scrolling="no"
|
||||
></iframe>
|
||||
</div>
|
||||
<h3>Image Filter</h3>
|
||||
<div>
|
||||
<iframe
|
||||
src="/Week-2/Pictures/image-filter.html"
|
||||
style="height: 620px"
|
||||
></iframe>
|
||||
</div>
|
||||
<h3>transformations (non-interactive)</h3>
|
||||
<p>build entirely using p5.js math</p>
|
||||
<div>
|
||||
<iframe
|
||||
src="/Week-2/Pictures/transformations.html"
|
||||
style="height: 800px"
|
||||
scrolling="no"
|
||||
></iframe>
|
||||
</div>
|
||||
<h1>Shapes</h1>
|
||||
<h3>interacive Shapes</h3>
|
||||
<div>
|
||||
<iframe
|
||||
src="/Week-2/Shapes/interactive-shapes.html"
|
||||
style="height: 1400px"
|
||||
scrolling="no"
|
||||
></iframe>
|
||||
</div>
|
||||
<h3>Bouncing DVD-type shape</h3>
|
||||
<div>
|
||||
<iframe
|
||||
src="/Week-2/Shapes/moving-shapes.html"
|
||||
style="height: 800px"
|
||||
scrolling="no"
|
||||
></iframe>
|
||||
</div>
|
||||
<h1>L-system</h1>
|
||||
<div>
|
||||
<iframe src="/Week-4/l-system.html" style="height: 600px"></iframe>
|
||||
</div>
|
||||
<h1>Markov Chain</h1>
|
||||
<div>
|
||||
<iframe src="/Week-4/markov-chain.html" style="height: 600px"></iframe>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
11
website/style.css
Normal file
11
website/style.css
Normal file
@@ -0,0 +1,11 @@
|
||||
/* Reset body margins and prevent double scrollbars */
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 1400px;
|
||||
border: none;
|
||||
}
|
||||
Reference in New Issue
Block a user