Skip to content

Commit e958aac

Browse files
committed
CSS Clip Path Animation Project
1 parent d67b5df commit e958aac

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed

53. CSS Clip Path Animation/app.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
let pos = document.documentElement;
2+
3+
pos.addEventListener("mousemove", (e) => {
4+
pos.style.setProperty("--1", e.clientX + "px");
5+
pos.style.setProperty("--2", e.clientY + "px");
6+
});
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<html lang="en">
2+
<head>
3+
<meta charset="UTF-8" />
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>CSS Clip Path Animation</title>
7+
<link rel="stylesheet" href="style.css" />
8+
</head>
9+
<body>
10+
<div class="container"></div>
11+
12+
<script src="app.js"></script>
13+
</body>
14+
</html>
Loading

53. CSS Clip Path Animation/style.css

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
font-family: sans-serif;
6+
}
7+
8+
body {
9+
background: black;
10+
}
11+
12+
.container {
13+
position: relative;
14+
width: 100%;
15+
height: 100vh;
16+
background: url(jonatan-pie-3l3RwQdHRHg-unsplash.jpg) no-repeat center;
17+
background-size: cover;
18+
clip-path: circle(200px at var(--1) var(--2));
19+
}

0 commit comments

Comments
 (0)