-
Notifications
You must be signed in to change notification settings - Fork 0
/
showreel.html
125 lines (113 loc) · 4.98 KB
/
showreel.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<div class="showreelPage" ng-swipe-right="responsive.selectPage(4)" ng-swipe-left="responsive.selectPage(2)">
<!-- Page Content -->
<style>
.carousel .carousel-control,.carousel .carousel-indicators li {
visibility: hidden;
}
.carousel:hover .carousel-control,.carousel:hover .carousel-indicators li {
visibility: visible;
}
</style>
<div class="container">
<!-- Page Heading/Breadcrumbs -->
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Showreel
<small>The First Two Video's are mine</small>
</h1>
<ol class="breadcrumb">
<li><a href="index.html">Home</a>
</li>
<li class="active">Showreel</li>
</ol>
</div>
</div>
<!-- /.row -->
<!-- Portfolio Item Row -->
<div class="row">
<div class="col-md-8">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
<li data-target="#carousel-example-generic" data-slide-to="4"></li>
<li data-target="#carousel-example-generic" data-slide-to="5"></li>
<li data-target="#carousel-example-generic" data-slide-to="6"></li>
<li data-target="#carousel-example-generic" data-slide-to="7"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<iframe src="//www.youtube.com/embed/w5sCgbgukjo?hd=1&iv_load_policy=3&controls=0" allowfullscreen="" width="750" height="500" frameborder="0"></iframe>
</div>
<div class="item">
<iframe src="//www.youtube.com/embed/sGMp67HdxTU?hd=1&iv_load_policy=3&controls=0" allowfullscreen="" width="750" height="500" frameborder="0"></iframe>
</div>
<div class="item">
<iframe src="//www.youtube.com/embed/vLshT1Yvt_g?hd=1&iv_load_policy=3&controls=0" allowfullscreen="" width="750" height="500" frameborder="0"></iframe>
</div>
<div class="item">
<iframe src="//www.youtube.com/embed/wBjpUR0DArg?hd=1&iv_load_policy=3&controls=0" allowfullscreen="" width="750" height="500" frameborder="0"></iframe>
</div>
<div class="item">
<iframe src="//www.youtube.com/embed/rwzwxGB2NbU?hd=1&iv_load_policy=3&controls=0" allowfullscreen="" width="750" height="500" frameborder="0"></iframe>
</div>
<div class="item">
<iframe src="//www.youtube.com/embed/xrfxFKYzQlo?hd=1&iv_load_policy=3&controls=0" allowfullscreen="" width="750" height="500" frameborder="0"></iframe>
</div>
<div class="item">
<iframe src="//www.youtube.com/embed/v8-dPr_CzlQ?hd=1&iv_load_policy=3&controls=0" allowfullscreen="" width="750" height="500" frameborder="0"></iframe>
</div>
<div class="item">
<iframe src="//www.youtube.com/embed/AaykjDsx3_g?hd=1&iv_load_policy=3&controls=0" allowfullscreen="" width="750" height="500" frameborder="0"></iframe>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<div class="col-md-4">
<h3>1-Compositing Reel 2015</h3>
<p>This is my compositing reel from the course <a href="http://www.online-vfx.ru/component/content/article/80-nuke-comp-artist" target="_blank">Nuke:Compositing Artist</a> where i had the chance to work on 9 real world shots from the movie <a href="http://www.imdb.com/title/tt2094767/" target="_blank">August. Eighth (2012)</a> </p>
<h3>2-Houdini FX Reel 2015</h3>
<p>This is my FX reel from the course <a href="http://www.online-vfx.ru/course-and-masters/82-houdini-3d-artist" target="_blank">Houdini:3D Artist</a> where i had the chance to work on some real world shots from the movie <a href="http://www.imdb.com/title/tt2094767/" target="_blank">August. Eighth (2012)</a> </p>
<h3><a href="http://www.online-vfx.ru/" target="_blank">OVFX school</a></h3>
<ul>
<li>Nuke : Compositing Artist</li>
<li>Houdini : 3D Artist</li>
<li>Houdini : Tool Development</li>
<li>Houdini : Advanced Mantra Rendering</li>
<li>Houdini : The Art of Destruction</li>
</ul>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Footer -->
<footer>
<div class="row">
<div class="col-lg-12">
<p>Copyright © Rachid 2016</p>
</div>
</div>
</footer>
</div>
<!-- /.container -->
<script>
$(document).ready(function () {
$('.carousel').each(function () {
$(this).carousel({
interval: false
});
});
});
</script>
</div>