-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (74 loc) · 3.7 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=yes">
<link rel="stylesheet" type="text/css" href="style.css">
<script async src="https://api.countapi.xyz/hit/About-Notes/44cbc1b9-2af0-4815-a734-4398eb719401?callback=websiteVisits"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a data-text="Rnsit Unofficial" href="#" class="logo">Rnsit Unofficial</a>
<!-- <a href="#" class="logo2">by sanjaybyranna</a> -->
<ul>
<li><a href="#sec" class="active">About</a></li>
<!--<li><a href="https://github.com/Sanjay0302/scroll-page">Github</a></li>-->
<li><a href="https://telegram.me/ECE4thSemRnsitNotes2022">Channel</a></li>
<li><a href="https://telegram.me/sanjaybyranna">Contact</a></li>
</ul>
</header>
<section>
<img src="stars.png" id="stars">
<img src="moon.png" id="moon">
<img src="mountains_behind.png" id="mountains_behind">
<h2 id="text">By Sanjaybyranna.</h2>
<a href="#sec" id="btn">Explore</a>
<img src="mountains_front.png" id="mountains_front">
</section>
<div class="sec" id="sec" >
<h2>H! Sophomore,</h2>
<br><br>
<p>
This website will help you to reach notes, which are official written by Rnsit staff's.
<br><br>And the Notes I am talking about is exclusively for 4th sem ECE students who are studying 2018 scheme under VTU .
<br><br>It's free to use these notes from, <a style="color:yellow" href="https://telegram.me/ECE4thSemRnsitNotes2022">4th sem unofficial telegram channel</a>.
<br><br>This Telegram Channel also contain Reffrence books and previous year Question papers required.
<!-- <br><br>Do Join the telegram channel for your benefit. -->
<br><br>If you have any queries and request, you can <a style="color:yellow" href="https://telegram.me/sanjaybyranna">Contact Me</a> or Put a message in this <a style="color:yellow" href="https://telegram.me/Rnsitnotesdiscussion">Discussion group</a>, so that you're served with what you want.
<br><br>Do help me to reach atleast 100 Subscribers.
<br><br>And also requesting you Guys to support my <a style="color:yellow" href="https://telegram.me/ECE3rdSemRnsitNotes2021">3rd sem unofficial telegram channel</a> by letting juniors to know about the channel.
</p>
</div>
<footer>
<p>This Website has been visited <span id="visits"></span> times.<br> Thank you, for contributing to this visits.</p>
</footer>
<script>
let stars = document.getElementById('stars');
let moon = document.getElementById('moon');
let mountains_behind = document.getElementById('mountains_behind');
let mountains_front = document.getElementById('mountains_front');
let text = document.getElementById('text');
let btn = document.getElementById('btn');
let header = document.querySelector('header');
window.addEventListener('scroll',function()
{
let value = window.scrollY;
stars.style.left = value * 0.25 + 'px' ;
moon.style.top = value * 1.05 + 'px' ;
mountains_behind.style.top = value * 0.5 + 'px' ;
mountains_front.style.top = value * 0 + 'px' ;
text.style.marginRight = value * 4 + 'px' ;
text.style.marginTop = value * 1.5 + 'px' ;
btn.style.marginTop = value * 1.5 + 'px' ;
header.style.top = value * 0.5 + 'px';
})
function websiteVisits(response) {
document.querySelector("#visits").textContent = response.value;
}
</script>
</body>
</html>