-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradiojs.js
72 lines (70 loc) · 3.59 KB
/
radiojs.js
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
function revealAboutUs()
{
document.getElementById("AboutUs").style.display = 'block';
document.getElementById("newsfeed").style.display = 'none';
document.getElementById("contact").style.display = 'none';
document.getElementById("radioIIITM").style.display = 'none';
document.getElementById("foot").style.position = '';
document.getElementById("foot").style.width = '100%';
document.getElementById("abt").style.backgroundColor = 'black';
document.getElementById("abt").style.borderRadius = '5px';
document.getElementById("contact1").style.backgroundColor = 'transparent';
document.getElementById("contact1").style.borderRadius = '0px';
document.getElementById("home").style.backgroundColor = 'transparent';
document.getElementById("home").style.borderRadius = '0px';
document.getElementById("fm").style.backgroundColor = 'transparent';
document.getElementById("fm").style.borderRadius = '0px';
limit=100;
}
function revealContactUs()
{
document.getElementById("AboutUs").style.display = 'none';
document.getElementById("newsfeed").style.display = 'none';
document.getElementById("contact").style.display = 'block';
document.getElementById("radioIIITM").style.display = 'none';
document.getElementById("foot").style.position = 'fixed';
document.getElementById("foot").style.width = '100%';
document.getElementById("contact1").style.backgroundColor = 'black';
document.getElementById("contact1").style.borderRadius = '5px';
document.getElementById("abt").style.backgroundColor = 'transparent';
document.getElementById("abt").style.borderRadius = '0px';
document.getElementById("home").style.backgroundColor = 'transparent';
document.getElementById("home").style.borderRadius = '0px';
document.getElementById("fm").style.backgroundColor = 'transparent';
document.getElementById("fm").style.borderRadius = '0px';
}
function revealHome()
{
document.getElementById("AboutUs").style.display = 'none';
document.getElementById("newsfeed").style.display = 'block';
document.getElementById("contact").style.display = 'none';
document.getElementById("radioIIITM").style.display = 'none';
document.getElementById("foot").style.position = '';
document.getElementById("foot").style.width = '100%';
document.getElementById("home").style.backgroundColor = 'black';
document.getElementById("home").style.borderRadius = '5px';
document.getElementById("abt").style.backgroundColor = 'transparent';
document.getElementById("abt").style.borderRadius = '0px';
document.getElementById("contact1").style.backgroundColor = 'transparent';
document.getElementById("contact1").style.borderRadius = '0px';
document.getElementById("fm").style.backgroundColor = 'transparent';
document.getElementById("fm").style.borderRadius = '0px';
limit=500;
}
function revealRadio()
{
document.getElementById("AboutUs").style.display = 'none';
document.getElementById("newsfeed").style.display = 'none';
document.getElementById("contact").style.display = 'none';
document.getElementById("radioIIITM").style.display = 'block';
document.getElementById("foot").style.position = 'fixed';
document.getElementById("foot").style.width = '100%';
document.getElementById("fm").style.backgroundColor = 'black';
document.getElementById("fm").style.borderRadius = '5px';
document.getElementById("abt").style.backgroundColor = 'transparent';
document.getElementById("abt").style.borderRadius = '0px';
document.getElementById("contact1").style.backgroundColor = 'transparent';
document.getElementById("contact1").style.borderRadius = '0px';
document.getElementById("home").style.backgroundColor = 'transparent';
document.getElementById("home").style.borderRadius = '0px';
}