-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcalendario.html
More file actions
141 lines (115 loc) · 4.93 KB
/
calendario.html
File metadata and controls
141 lines (115 loc) · 4.93 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WTPC - Workshop</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<header>
<div class="menuMobile">
<a href="#" id="menuMobile"><i aria-hidden="true" class="fa fa-bars"></i></a>
</div>
<div class="menuMobileBox">
<div class="closeButton">
<a href="#" id="close">
<i aria-hidden="true" class="fa fa-times"></i>
</a>
</div>
<ul>
<li><a href="index">Home</a></li>
<li><a href="objetivos">Objetivos</a></li>
<li><a href="docentes">Docentes</a></li>
<li><a href="programa">Programa</a></li>
<li><a href="clases">Clases</a></li>
<li><a href="calendario">Calendario</a></li>
<li><a class="contactoAnchor" href="#">Contacto</a></li>
</ul>
</div>
<div class="logo">
<a href="#"><img src="img/logoBlanco.png" alt="WTPC - Workshop en técnicas de programación científica"></a>
</div>
<div class="borde"></div>
<h2>Calendario</h2>
</header>
<nav class="menu">
<ul>
<li><a href="index">Home</a></li>
<li><a href="objetivos">Objetivos</a></li>
<li><a href="docentes">Docentes</a></li>
<li><a href="programa">Programa</a></li>
<li><a href="clases">Clases</a></li>
<li><a href="calendario">Calendario</a></li>
<li><a class="contactoAnchor" href="#">Contacto</a></li>
</ul>
</nav>
<section class="mainTexto" style="margin: 20px 0;">
<div class="container" style="display:flex; justify-content:center; align-items:center; flex-direction:column;">
<iframe src="https://calendar.google.com/calendar/embed?mode=AGENDA&height=600&wkst=2&hl=es&src=mt46kc6snchjvipbrshiosotlk%40group.calendar.google.com&color=&ctz=America%2FArgentina%2FBuenos_Aires&dates=20190715%2F20190726" style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</section>
<section id="contacto" class="contacto">
<div class="container" style="display:flex; justify-content:center; align-items:center; flex-direction:column;">
<h2>Contacto</h2>
<span>Ante cualquier duda o consulta, escribir a nuestro correo electrónico:</span>
<span class="mail"><a href="mailto:workshop.tpc@gmail.com">workshop.tpc@gmail.com</a></span>
<div class="redes">
<ul>
<li><a target="_blank" href="https://twitter.com/workshoptpc"><i aria-hidden="true" class="fa fa-twitter-square"></i></a></li>
<li><a target="_blank" href="https://www.facebook.com/workshoptpc"><i aria-hidden="true" class="fa fa-facebook-square"></i></a></li>
<li><a target="_blank" href="https://github.com/wtpc"><i aria-hidden="true" class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
</section>
</body>
</html>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(function () {
var $win = $(window);
// definir mediente $pos la altura en píxeles desde el borde superior de la ventana del navegador y el elemento
var $pos = 250;
$win.scroll(function () {
if ($win.scrollTop() <= $pos)
$('nav.menu').removeClass('fijar');
else {
$('nav.menu').addClass('fijar');
}
});
});
</script>
<script>
/*Scroll transition to anchor*/
$("a.contactoAnchor").on('click',function(e) {
e.preventDefault();
$('html, body').animate({
scrollTop: $('#contacto').offset().top
}, 500);
return false;
});
</script>
<script>
$("#menuMobile").click(function(){
$(".menuMobileBox").css('display', 'flex');
$("body").css('overflow', 'hidden');
});
$("#close").click(function(){
$(".menuMobileBox").hide();
$("body").css('overflow', 'auto');
});
</script>
<script>
$(".contactoAnchor").on('click',function(e) {
e.preventDefault();
$('html, body').animate({
scrollTop: $('#contacto').offset().top
}, 750);
return false;
});
</script>