-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (85 loc) · 3.96 KB
/
index.html
File metadata and controls
88 lines (85 loc) · 3.96 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- <script src="scripts/shi_jquery.min.js"></script> -->
<!-- <title>Learning Center | evive</title> -->
<link href="/icons/evive_logo_250px.png" rel="shortcut icon">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-route.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-104908040-1', 'auto');
ga('send', 'pageview');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./main.css">
<!-- <link rel="stylesheet" type="text/css" href="styles/shi_emacs.min.css"> -->
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<!-- <meta name="description" content="evive: transform your ideas to reality. It is an open source embedded platform for all age groups to help them learn, build, debug their robotics, embedded and other projects. With an Arduino Mega at its heart, evive offers a unique menu-based visual interface to make projects, which removes the need to re-program the Arduino repeatedly. evive offers the world of IoT, with power supplies, sensory and actuator support in one small portable kit."/>
<meta name="author" content="Agilo Technologies"/>
<meta name="keywords" content="evive, toolkit, arduino, arduino projects, learn, learning center, make, robotics, embedded, iot, iit kanpur, iit kanpur evive, technology"/>
<meta property="fb:page_id" content="211519409232010"/>
<meta property="og:site_name" content="evive"/> -->
</head>
<body ng-app="learnEviveApp">
<div ng-view></div>
<div id="scroll-to-top" class="scroll-to-top hidden">
<span class="background-container" onclick="window.scrollTo(0,0)">
<svg version="1.1" x="0px" y="0px" viewBox="0 0 48 48" fill="#fff" xmlns="http://www.w3.org/2000/svg" fit="" height="24" width="24" preserveAspectRatio="xMidYMid meet"><path class="arrow-path" d="M24 16l-12 12 2.83 2.83 9.17-9.17 9.17 9.17 2.83-2.83z"></path><path d="M0 0h48v48h-48z" fill="none"></path></svg>
</span>
<style type="text/css">
.scroll-to-top{
position: fixed;bottom: 36px;right: 50px;
transition: transform ease 300ms;
}
.scroll-to-top.hidden{
transform: scale(0);
}
.scroll-to-top .background-container{
width: 48px;
height: 48px;
display: inline-block;
display: flex;
justify-content: center;
align-items: center;
background: #2a8bd8;
border-radius: 50%;
cursor: pointer;
box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.1);
transition: background-color ease 300ms;
}
.scroll-to-top.white-bg .background-container{
background: #fafafa;
}
.scroll-to-top .arrow-path{
transition: fill ease 300ms;
}
.scroll-to-top.white-bg .arrow-path{
fill: #2a8bd8;
}
</style>
<script type="text/javascript">
window.addEventListener('scroll',function(){
if(window.scrollY<200){
document.getElementById('scroll-to-top').setAttribute('class','scroll-to-top hidden');
}else{
var classs = 'scroll-to-top';
if( document.body.clientHeight - window.innerHeight - document.getElementsByClassName('footer')[0].clientHeight - window.scrollY + 120 < 0){
classs += ' white-bg'
}
document.getElementById('scroll-to-top').setAttribute('class',classs);
}
})
</script>
</div>
<script type="text/javascript" src="data.js"></script>
<script type="text/javascript" src="./scripts/doc.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
</body>
</html>