-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
55 lines (47 loc) · 2.32 KB
/
team.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
<!DOCTYPE html>
<html ng-app="teamApp">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<title>NoviPel</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="styleTeam.css" />
<link rel="icon" type = "image/png"href="./images/MinorLogo.png">
<link href='https://fonts.googleapis.com/css?family=Roboto:100' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular-animate.js"> </script>
<script src ="team.js"></script>
</head>
<body ng-controller="teamController as teamList">
<div class="container-fluid">
<div class="row">
<div class="col-xs-7 col-md-7" id="main">
<div class="col-md-12" id="logo">
<img src="./images/LOGO.png" class="img-responsive" width="700" height="700" >
</div>
<div class="arrayPictures col-md-12" ng-repeat="item in teamList.list" ng-animate="'animate'">
<div class="teamPictures col-md-4" ng-repeat="person in item.people" >
<img class="img-responsive"ng-if="person.toggle" ng-src="{{person.img1}}" ng-mouseover="person.toggle=false" />
<img class="img-responsive" ng-if="!person.toggle" ng-src="{{person.img2}}" ng-mouseleave="person.toggle=true" />
</div>
</div>
</div>
<div class="col-xs-5 col-md-5" id="rightCol">
<ul class="sidebar nav nav-stacked " >
<li id="home"><a href="index.html">HOME</a></li>
<li id="howWorks"><a href="howWorks.html" >HOW IT WORKS</a></li>
<li id="howWorksExplanation"></li>
<li id="need"><a href="need.html" >WE NEED YOU</a></li>
<li id="needExplanation"></li>
<li id="newsLetter"><a href="news.html">NEWSLETTERS</a></li>
<li id="newsExplanation"></li>
</ul>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="./css/bootstrap.min.js"></script>
<script type="text/javascript" src="menu.js"></script>
</body>
</html>