Skip to main content

Making the Show Reel

To make the Show Reel I began by planning the order of when I’m going to show which brief, it went:
-      Signature
-      Mosi
-      App
-      Creative play
-      KidsCan
-      Tuesday’s brief

I then started to make some of the video clips, so what I did for the posters is that I created Gifs on Photoshop of the posters going in and out of shot, then added this Gif into Premier to edit it, I did it this way because I found it very difficult to work with still images in Premier and on Aftereffects so it was easier for me to do it this way. Then I added in all the videos from the projects, such as the course booklet, KidsCan motion piece, App video, and the Creative play video. On top of this I then added an audio track that I got off of YouTube, I used a piano version of a song just because it matched the style of the Show Reel. 

Comments

Popular posts from this blog

Week 2

Notes Footers are like links to something, such as URLs or emails. <Li> </Li> is an unordered list.  A basic menu would have some simple CSS rules, i.e stylings. { = section so have things separated like 'divs', shows when an area starts and finishes.  Dropdown menu-  Have links added- items and subitems, added next to items.  Use CSS to hide the items until you scroll over them.  All boxes are relative and try to stay on line.  You can animate things using CSS.  THERE IS ONLY ONE HEAD AND BODY, if you have extras then it confuses the program.  Codes To start we created a new webpage, with a CSS and NAV folder inside of it. Then we have to put the code for the index.html page to work on: <! DOCTYPE html > <!-- Standard html5 blank template --> < html > < head > < title ></ title > </ head > < body > <!-- all content goes here. --> ...

Screenshots of website

Week 1- Part 2

Codes: -  This will create a basic webpage with some text on it: You need to have a folder for the webpage, with one folder called CSS, and one the name Index (or something similar) <!DOCTYPE html>                                               <html>         <head>                 <title>Web Demo/title>        </head>        <body>                Hello World!        </body> </html> The body tag means the text on the page, so any text they would want on the webpage they should put it where 'Hello World!' is. -  This will change the styles of the webpage that you created in the last tutorial thing. Within the CSS folder make a file called...