-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEnglishWritingChap2.html
More file actions
43 lines (35 loc) · 1.87 KB
/
EnglishWritingChap2.html
File metadata and controls
43 lines (35 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Welcome to Adentent Page | adentent.github.io</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h2>Chapter. 1 - RAINS</h2>
<p>What I am considering is when the rain can finally stop. It has least almost a month - maybe it stopped sometimes
but I did not mention it, it influenced my routine heavily. For example, I need to buy a brand-new bike, but due
to the heavy rain, it is delayed. But because of the rain, I drive to work instead of riding, and the bike is
just not as vital as before now, so it does not matter now. But the low air pressure, surely makes me mad. I did
not mind my child running around my house before, but these days I feel really upset with that. And these days,
every single thing seems crazy – my umbrella was just flown away yesterday, and I lost my expensive pants which
costs me about 70 dollars. That is why life was like a box of chocolate, you never know what you are going to
get, maybe.</p>
<p><a href="EnglishWriting.html">← Back to the catalog</a></p>
<script>
document.querySelector('body').addEventListener('mousemove',
(e) => {
e.currentTarget.style.setProperty('--x', `${e.clientX}px`);
e.currentTarget.style.setProperty('--y', `${e.clientY}px`);
});
function setLinksPositions() {
document.querySelectorAll('a').forEach((a) => {
const bounding = a.getBoundingClientRect();
a.style.setProperty('--positionX', `${bounding.x}px`);
a.style.setProperty('--positionY', `${bounding.y}px`);
});
}
window.addEventListener('load', setLinksPositions);
window.addEventListener('resize', setLinksPositions);
</script>
</body>