-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
32 lines (28 loc) · 917 Bytes
/
list.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
<!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">
<link rel="stylesheet" href="/static/style/list.css">
<link rel="shortcut icon" href="/static/images/favicon.ico" />
<title>Document</title>
</head>
<body>
<div class="background-image"></div>
<p>
Выберите игру:
</p>
<script type="text/javascript">
const bg = document.querySelector(".background-image");
const windowWidth = window.innerWidth / 5;
const windowHeight = window.innerHeight / 5 ;
bg.addEventListener("mousemove", (e) => {
const mouseX = e.clientX / windowWidth;
const mouseY = e.clientY / windowHeight;
bg.style.transform = `translate3d(-${mouseX}%, -${mouseY}%, 0)`;
console.log(bg.style.transform);
});
</script>
</body>
</html>