-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbts.html
96 lines (91 loc) · 4.04 KB
/
bts.html
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
<!doctype html>
<html lang="en-US">
<head>
<title>Behind the Scenes</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Shaun C-B">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="scblogo.ico">
</head>
<!--Body of website-->
<body onresize="changeText()" onload="changeText()">
<!--Header///////////////////////////////////////////////-->
<header>
<h1><span id="title1">SC-B</span>
<span id="title2"> Lockdown Videos</span></h1>
<p id="subtitle">Showcase of videos made for the PB Tech Video Challenge</p>
</header>
<!--Left navivation bar//////////////////////////////////-->
<aside class="longpage">
<ul>
<li><a href="index.html">Home</a></li>
<hr>
<li><a href="challenge1.html">Steady Hands Challenge</a></li>
<li><a href="challenge2.html">Inventor Challenge</a></li>
<li><a href="challenge3.html">Camouflage Challenge</a></li>
<li><a href="challenge4.html">Simulation Challenge</a></li>
<li><a href="challenge5.html">Floor is Lava Challenge</a></li>
<li><a href="challenge6.html">Stop Motion Challenge</a></li>
<hr>
<li class="current_page"><a href="bts.html">Behind the Scenes</a></li>
<li><a href="prizes.html">Prizes we won</a></li>
</ul>
</aside>
<!--Main section of text/////////////////////////////////-->
<section class="longpage">
<h1>How we made "New Zealand by Kayak"</h1>
<p>Of all the challenges we participated in, the Simulation Challenge was the
biggest undertaking. This was the first time I'd ever played with a green
screen and edited with Adobe Premiere Pro. It was also quite the task
getting a 4 meter kayak out of the garage and onto our deck.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/YfZGKO3GKaY"
frameborder="0" allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<h1>Filming the Stop Motion Challenge</h1>
<p>After making this video I looked back in wonder at how I managed it 6 years ago.
Sure, it's a choppy 7fps video, but it was made by a 10YO without a tripod or propper
lighting. The video for the Stop Motion Challenge was taken at 15fps and is still a
little choppier than I would have liked, but overall I'm pleased with the final result.
Take a look at a timelapse of filming it and my first ever stop motion below.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/jMWzo59-de8"
frameborder="0" allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Bwv2wFFNldE"
frameborder="0" allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</section>
<!--Footer for contact details////////////////////////////-->
<footer>
<nav>
<span class="bottom_nav_elements">Find me on:</span>
<a href="https://www.youtube.com/channel/UC77SO-bVkzyRYwldn13wtnQ"
target="_blank" class="bottom_nav_elements">
<img class="icon" id="yt_logo" src="yt_white.png" alt="Youtube Channel"
onmouseover="changeIconYT()" onmouseleave="changeIconYT()"></a>
<a href="https://www.instagram.com/_shauncb_/" target="_blank"
class="bottom_nav_elements">
<img class="icon" id="ig_logo" src="instagram_white.png" alt="instagram Page"
onmouseover="changeIconIG()" onmouseleave="changeIconIG()"></a>
</nav>
<script>
var picYT = "yt_white.png";
function changeIconYT() {
if (picYT == "yt_white.png") {
picYT = "yt_colour.png";
} else {
picYT = "yt_white.png";
}
document.getElementById('yt_logo').src = picYT;
}
</script>
<script>
var picIG = "instagram_white.png";
function changeIconIG() {
if (picIG == "instagram_white.png") {
picIG = "instagram_colour.png";
} else {
picIG = "instagram_white.png";
}
document.getElementById('ig_logo').src = picIG;
}
</script>
</footer>
</body>