Skip to content

Commit d540c41

Browse files
committed
Checkbox Animation added with readme
1 parent 81d0f73 commit d540c41

File tree

3 files changed

+89
-0
lines changed

3 files changed

+89
-0
lines changed

checkbox animation/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
# Checkbox Animation
3+
4+
## 🚀 About Me
5+
I'm a full stack developer...you can follow me here -https://github.com/RAHULBAWA777
6+
7+
8+
## Run Locally
9+
10+
Clone the project
11+
12+
13+
Start the live server
14+
15+
16+
## Used By
17+
18+
This project is used by the following companies:
19+
20+
-https://github.com/Dezenix/frontend-html-css-js

checkbox animation/index.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Checkbox Animation</title>
8+
<link rel="stylesheet" href="style.css">
9+
</head>
10+
<body>
11+
<div class="toggle">
12+
<input type="checkbox">
13+
<div class="left"></div>
14+
<div class="right"></div>
15+
</div>
16+
</body>
17+
</html>

checkbox animation/style.css

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
*{
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
}
6+
body{
7+
display: flex;
8+
justify-content: center;
9+
align-items: center;
10+
height: 100vh;
11+
background: #000000;
12+
}
13+
.toggle{
14+
width: 100px;
15+
height: 50px;
16+
background: #171616;
17+
border-radius: 50px;
18+
position: relative;
19+
overflow: hidden;
20+
cursor: pointer;
21+
}
22+
.toggle input{
23+
position: absolute;
24+
-webkit-appearance: none;
25+
appearance: none;
26+
width: 100%;
27+
height: 100%;
28+
z-index: 10;
29+
cursor: pointer;
30+
}
31+
.left, .right{
32+
position: absolute;
33+
width: 50%;
34+
height: 100%;
35+
border-radius: 50px;
36+
border: 15px solid rgb(7, 99, 56);
37+
transform: translateX(-2px);
38+
transition: all 1s;
39+
}
40+
.toggle input:checked ~ .left{
41+
transform: translateY(-100%);
42+
}
43+
.right{
44+
right: 0;
45+
transform: translateX(100%);
46+
background: #00da1d;
47+
box-shadow: -10px 0 25px #00da6d70;
48+
transition: all 1s;
49+
}
50+
.toggle input:checked ~ .right{
51+
transform: translateY(0%);
52+
}

0 commit comments

Comments
 (0)