-
Notifications
You must be signed in to change notification settings - Fork 2
/
schedule.html
executable file
·141 lines (138 loc) · 3.36 KB
/
schedule.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
<html>
<head>
<title>Ragam '13 Schedule</title>
<link href="css/favicon.ico" rel="icon" type="image/x-icon" />
<meta name="description" content="Ragam '13 - The annual inter-college fest conducted by the National Institute of Technology, Calicut.">
<meta name="keywords" content="schedule, ragam, nitc, national institute of technology, cultural fest, cultural, fest, college,ragam, tathva, Ragam, shankar, mahadevan, shankar mahadevan">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
var scroll_left_init=0;
var scroll_top_init=0;
$(document).ready(function()
{
$(document).scroll(function(){
var scroll_left_new=$(document).scrollLeft();
if(scroll_left_init!=scroll_left_new)
{
var scroll_top_forleft=$(document).scrollTop();
scroll_top_forleft-=33;
scroll_left_temp=-scroll_left_new;
$("#sch_left").show();
$("#sch_left").css({"top":10-scroll_top_forleft});
$("#sch_top").css({"left":scroll_left_temp});
scroll_left_init=scroll_left_new;
}
var scroll_top_new=$(document).scrollTop();
if(scroll_top_init!=scroll_top_new)
{
$("#sch_left").hide();
scroll_top_init=scroll_top_new;
}
if(scroll_top_new!=0)
{
$("#sch_top").show();
}
else if(scroll_top_new==0)
{
$("#sch_top").hide();
}
});
});
</script>
<style>
@font-face {
font-family: ProximaNova;
src: url('css/proximanova-black-webfont.eot');
src: url('css/proximanova-black-webfont.eot?#iefix') format('embedded-opentype'),
url('css/proximanova-black-webfont.woff') format('woff'),
url('css/proximanova-black-webfont.ttf') format('truetype'),
url('css/proximanova-black-webfont.svg#proxima_novablack') format('svg');
font-weight: normal;
font-style: normal;
}
*
{
margin:0;
}
#download {
position: fixed;
top:5px;
left:0;
height:20px;
text-align: center;
width: 100%;
text-transform: uppercase;
font-family: 'ProximaNova';
}
#download a {
text-decoration: none;
color:#644;
}
#download a span {
opacity: 0.7;
transition: all 0.4s;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-o-transition: all 0.4s;
}
#download a span:hover {
opacity: 1;
transition: all 0.4s;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-o-transition: all 0.4s;
}
#wrapper {
position:absolute;
margin-top:25px;
}
#sch_top
{
position:fixed;
top:0px;
width:1926px;
height:18px;
display:none;
background-image:url('img/sch_top.png');
}
#sch_body
{
width:1926px;
height:1651px;
}
#sch_left
{
position:fixed;
top:18px;
left:0;
height:1651px;
width:235px;
display:none;
background:#fff url('img/sch_left.png') 0px 0px no-repeat;
}
#sch_right
{
margin-top: 18px;
height:1651px;
width:1926px;
overflow: auto;
}
</style>
</head>
<body>
<div id="download">
<a href="Ragam13ScheduleEventwise.pdf" target="_blank"><span>Download Event-wise Schedule</span></a> | <a href="Ragam13ScheduleTimeline.pdf" target="_blank"><span>Download Timeline Schedule</span></a>
</div>
<div id="wrapper">
<div id="sch_top">
</div>
<div id="sch_body">
<div id="sch_left">
</div>
<div id="sch_right">
<img src="img/sch_body.png"/>
</div>
</div>
</div>
</body>
</html>