-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuvce.html
178 lines (128 loc) · 5.91 KB
/
uvce.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en" ng-app="APP">
<head>
<meta charset="UTF-8" />
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' name='viewport' />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>IMPETUS 2K17</title>
<link rel="stylesheet" href="css/styleload.css"/>
<link rel="stylesheet" href="css/stylemain.css"/>
<script type="text/javascript" src="js/modernizr.custom.79639.js"></script>
<!-- uvce css -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="uvce/css/revealer.css" />
<link rel="stylesheet" type="text/css" href="uvce/css/demo.css" />
<script src="./js/cursor.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/stylemain.css"> <!-- Resource style -->
<!-- <link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/styleroute.css"> <!-- Resource style -->
<script src="js/routemodernizr.js"></script>
<script type="text/javascript">
//function for loader
$(window).load(function(){
$(".Loader").fadeOut('fast');
})
$(window).ready(function(){
// $(".container").css("opacity", "1");
//$(".Loader").fadeOut('fast');
$(".container").fadeIn("slow").delay(120000);
});
</script>
</head>
<body ng-controller="controller">
<div class="container" id="wrap">
<main>
<div class="cd-main-content cd-about">
<audio id="audio">
<source src="./images/audio.mpeg"></source>
</audio>
<a href="index.html" data-type="page-transition">Go back</a>
<img id="background" src="./images/bck.png" />
<section>
<div id="rev-1"> <h1 id="hh1">University Visvesvaraya</h1></div>
<div id="rev-2" ><h2 id="hh2">College Of Engineering</h2></div>
<div id="rev-3">
<a href="index.html" onClick="play()" data-type="page-transition"><img id="impetuslogo" class="logo uvcelogo" src="./images/impetus.png" /></a>
</div>
<div id="rev-4">
<img id="uvce" src="./images/UVCE.jpg" />
</div>
<div id="rev-5">
<p style="font-size: 16px">University Visvesvaraya College of Engineering (UVCE) was established in the year 1917 by Bharat Ratna Sir M Visvesvaraya. Currently affliated to Bangalore University, the College provides seven engineering courses - Electronics and Communication, Electrical and Electronics, Mechanical, Computer Science, Information cience, Civil Engineering and Architechure. There are also a variety of M.E. courses that are offered by the college. Over the years, this pioneer college has grown many folds, producing some of the best engineers in the country. The college is a hub of many technical and non- technical activities evenly spread throughout the year. The entire student fraternity contributes in making each of these events a success. The college is currently being funded by the World Bank under the TEQIP project for the improvement of the quality of technical education through various programs and infrastructural developments. The college boasts of very good campus placements and also a healthy rate of students taking up higher education abroad and also a good number of UVCE alumni who turned out as entrepreneurs.
</p>
</div>
</section>
</main>
</div><!--container ends here -->
<div class="cd-cover-layer"></div>
<div class="cd-loading-bar"></div>
<script src="js/jquery-2.1.1.js"></script>
<script src="js/routemain.js"></script> <!-- Resource jQuery -->
<!-- uvce js -->
<script src="uvce/js/anime.min.js"></script>
<!-- <script src="js/scrollMonitor.js"></script> -->
<script src="uvce/js/main.js"></script>
<script>
(function() {
// Fake loading.
setTimeout(init, 1000);
function init() {
var rev1 = new RevealFx(document.querySelector('#rev-1'), {
revealSettings : {
bgcolor: '#244AFC',
onCover: function(contentEl, revealerEl) {
contentEl.style.opacity = 1;
}
}
});
rev1.reveal();
var rev2 = new RevealFx(document.querySelector('#rev-2'), {
revealSettings : {
bgcolor: '#FB0A5D',
delay: 270,
onCover: function(contentEl, revealerEl) {
contentEl.style.opacity = 1;
}
}
});
rev2.reveal();
var rev3 = new RevealFx(document.querySelector('#rev-3'), {
revealSettings : {
bgcolor: '#39D005',
delay: 300,
onCover: function(contentEl, revealerEl) {
contentEl.style.opacity = 1;
}
}
});
rev3.reveal();
var rev4 = new RevealFx(document.querySelector('#rev-4'), {
revealSettings : {
bgcolor: '#285094',
delay: 290,
onCover: function(contentEl, revealerEl) {
contentEl.style.opacity = 1;
}
}
});
rev4.reveal();
var rev5 = new RevealFx(document.querySelector('#rev-5'), {
revealSettings : {
bgcolor: '#E37F80',
delay: 320,
onCover: function(contentEl, revealerEl) {
contentEl.style.opacity = 1;
}
}
});
rev5.reveal();
}})();
</script>
<script>
function play(){
var audio = document.getElementById("audio");
audio.play();
}
</script>
</body>
</html>