-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 813 Bytes
/
index.html
File metadata and controls
23 lines (20 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
title: Mehackit Creative programming workshop with Processing
---
<canvas class="example" id="background" filepath="{{ '/sketches/bg_animation/bg_animation.pde' | prepend: site.url }}"></canvas>
<!-- <div class="page"> -->
<div id="frontpage">
<h1>Mehackit</h1>
<h2>Creative programming workshop with Processing</h2>
</div>
<!-- </div> -->
{% assign next = site.exercises | first %}
<a href="{{ site.url }}{{ next.url }}" class="exercise-nav nav-next" aria-label="Next: {{next.title}}">
<i class="fa fa-angle-right"></i>
<img id="click_here_img" src="{{ site.url }}/img/click_here.png">
<script type="text/javascript">
setTimeout(function(){ $('#click_here_img').fadeIn(500); }, 5000);
setTimeout(function(){ $('#click_here_img').fadeOut(500); }, 15000);
</script>
</a>