-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (38 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>CSS Mask Swicth</h2>
<div class="misc">
<a href="https://github.com/rpsthecoder/css-mask-switch" target="_blank">Github Repo</a> |
🔄 <a href="javascript:location.reload(true)" title="👆 Click to reload the page">Reload/Refresh</a>
</div>
<div id="outerWrapper">
<div id="innerWrapper">
<input type="radio" id="leftRadio" class="radio" name="radio" />
<input type="radio" id="rightRadio" class="radio" name="radio" checked/>
<div id="daySkin" class="skin"></div>
<div id="nightSkin" class="skin"></div>
<div id="switchBtnOutline"></div>
</div>
</div>
<!-- SVG for firefox -->
<svg>
<defs>
<!-- White rectangle + Black circle -->
<mask id="leftSwitchMask" >
<rect x="0" y="0" width="450" height="90" fill="rgb(255,255,255)" />
<circle cx="45" cy="45" r="45" />
</mask >
<!-- Black rectangle + White circle -->
<mask id="rightSwitchMask" >
<rect x="0" y="0" width="450" height="90" />
<circle cx="405" cy="45" r="45" fill="rgb(255,255,255)"/>
</mask >
</defs>
</svg>
</body>
</html>