Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container">
	<input id="switch" type="checkbox" checked>
	<div class="box" id="box">
		<div class="backside"></div>
		<label for="switch">
			<span class="on">ON</span>
			<span class="off">OFF</span>
			<span class="cube-switch">
				<span></span>
				<span></span>
				<span></span>
				<span></span>
				<span></span>
				<span></span>
			</span>
		</label>
	</div>
	<div class="turned-off"></div>
	<input type="range" id="turn" min="0" max="360" value="30" oninput="spinSwitch()" onchange="spinSwitch()">
</div>
              
            
!

CSS

              
                body {
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	perspective: 100vmin;
	overflow: hidden;
}

body * { 
	box-sizing: border-box; 
	outline: none; 
	transition: all 0.5s ease 0s;
}

.container {
	position: fixed;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	overflow: hidden;
}

.box {
	width: 36vmin;
	height: 44vmin;
	transform-style: preserve-3d;
	position: absolute;
	box-shadow: 0.15vmin 0 0.5vmin -0.25vmin #c5c5c5;
	z-index: 0;
	border-radius: 3vmin;
	transform: rotateY(30deg);
	background: #3c3c3c;
}

.box:after {
	content: "";
	background: #212121;
	width: 98%;
	height: 98%;
	position: absolute;
	left: 1%;
	transform: translateZ(-1px);
	top: 1%;
	border-radius: 3vmin;
	transition: all 0.5s ease 0s;
}

#switch:checked + .box  {
	background: transparent;
}

#switch:checked + .box label  {
	background: #e6e6e6;
}

#switch:checked ~ .box:after {
	background: #e9e9e9;
  transition: all 0.5s ease 0s;
}

#switch { display: none; }

label {
	float: left;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-radius: 3vmin;
	padding: 0.25vmin;
	transform-style: preserve-3d;
	box-shadow: 0 0 0 1vmin #00000020 inset;
	cursor: pointer;
}

label:before {
	content: "";
	width: 10.5vmin;
	height: 20vmin;
	position: absolute;
	background: #333;
	z-index: 0;
	border-radius: 1vmin;
	left: 12.75vmin;
	top: 12vmin;
	box-sizing: border-box;
	box-shadow: -5px 0px 5px 0px #00000080 inset;
	transform: translateZ(1px);
}

label .on:before, 
label .on:after {
	content: "";
	width: 2vmin;
	height: 0.15vmin;
	position: absolute;
	top: 95%;
	left: 5vmin;
	border-radius: 100%;
	transform: rotateZ(0deg) rotateY(1deg) translate3d(0px, 0px, 1px);
	background: #3c3c3c;
	border-top: 1vmin solid #343434;
	border-bottom: 1vmin solid #343434;
	box-shadow: -1px -1px 1px 0px #23232380;
	transition: all 0.5s ease 0s;
}

label .on:after {
	transform: rotateZ(0deg) rotateY(-1deg) translate3d(23vmin, 0px, 1px);
}

#switch:checked + .box label .on:before,
#switch:checked + .box label .on:after {
	background: #eaeaea;
	border-top: 1vmin solid #a5a5a5;
	border-bottom: 1vmin solid #a5a5a5;
	box-shadow: -1px -1px 1px 0px #ffffff80;
	transition: all 0.5s ease 0s;
}

label span {
	float: left;
	width: 100%;
	height: 50%;
	border-radius: 3vmin 3vmin 0 0;
	text-align: center;
	padding: 2vmin;
	perspective: 100vmin;
	transform-style: preserve-3d;
	font-family: Arial, Helvetica, serif;
	font-size: 4.5vmin;
	font-weight: bold;
	color: #4caf5040;
	text-shadow: 1px 1px 1px white;
	color: #ffffff12;
	text-shadow: -1px -1px 1px #00000080;
}

label .off {
	border-radius: 0 0 3vmin 3vmin;
	text-align: center;
	padding-top: 14vmin;
	color: #ff4d4d1f;
	transform: translateZ(1px);
}

#switch:checked + .box label span {
	color: #4caf50f5;	
	text-shadow: 1px 1px 1px white;
}

#switch:checked + .box label .off {
	color: #ff000040;	
	text-shadow: 1px 1px 1px white;
}

.cube-switch {
	border-radius: 0;
	position: absolute;
	left: 0;
	top: 18vmin;
	height: 8vmin;
	padding: 0;
	width: 8vmin;
	left: 14vmin;
	z-index: 0;
	transform-style: preserve-3d;
	perspective-origin: bottom;
	transform: translate3d(0, 0, -4vmin) rotateX(140deg);
	transform-origin: center center;
}

#switch:checked + .box label .cube-switch {
	transform: translate3d(0, 0, -4vmin) rotateX(220deg);
}

label .cube-switch span {
	position: absolute;
	width: 200%;
	height: 100%;
	background: #333333;
	border: 1px solid #31313166;
	border-radius: 0.5vmin;
}

label .cube-switch span:nth-child(1) {
	background: linear-gradient(160deg, #333 0% ,#333 23% , #121212);
	transform: rotateX(0deg) translate3d(-4vmin, 0vmin, -14vmin);
	width: 100%;
}

label .cube-switch span:nth-child(2) {
	transform: rotateY(0deg) translate3d(-4vmin, 0vmin, 2vmin);
	width: 100%;
}

label .cube-switch span:nth-child(3) {
	background: linear-gradient(180deg, #333 0% ,#333 50% , #222);
	transform: rotateX(-90deg) translate3d(-4vmin, 6vmin, 0vmin);
	width: 100%;
	height: 200%;
}

label .cube-switch span:nth-child(4) {
    transform: rotateY(90deg) translate3d(6vmin, 0vmin, -4vmin);
}

label .cube-switch span:nth-child(5) {
    background: linear-gradient(125deg, #333 0% ,#333 50% , #222);
    transform: rotateY(90deg) translate3d(6vmin, 0vmin, -12vmin);
}

label .cube-switch span:nth-child(6) {
    transform: rotateX(-90deg) translate3d(-4vmin, 6vmin, -8vmin);
    width: 100%;
    height: 200%;
}

#switch:checked + .box label .cube-switch span:nth-child(1) {
	background: linear-gradient(125deg, #fff 0% ,#bdbdbd 50% , #6f6f6f);
}
#switch:checked + .box label .cube-switch span:nth-child(3) {
	background: linear-gradient(125deg, #333 0% ,#333 50% , #222);
}
#switch:checked + .box label .cube-switch span:nth-child(5) {
	background: linear-gradient(60deg, #333 0% ,#333 50% , #505050);
}
#switch:checked + .box label .cube-switch span:nth-child(6) {
	background: linear-gradient(199deg, #333 0% ,#333 40% , #8e8e8e);
}

#turn {
	position: absolute;
	bottom: 4vmin;
	left: 3vw;
	width: 94vw;
}

#switch:checked ~ #turn{
	background: #ffffff;
}

.turned-off {
	background: #000000e0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
}

#switch:checked ~ .turned-off {
	background: transparent;
}

.backside {
	background: #2b2b2b;
	width: 100%;
	height: 100%;
	position: absolute;
	transform: translateZ(-2vmin);
	border-radius: 3vmin;
}

#switch:checked + .box .backside {
    background: #afafaf;
}


/*** RANGE STYLES ***/

input[type=range] {
  background: #1f1f1f;
}
input[type=range]:hover {
  cursor: pointer;
}
input[type=range]:focus {
  outline: none;
}
input[type=range],
input[type=range]::-webkit-slider-runnable-track,
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type=range]::-webkit-slider-thumb {
  background-color: #3c3c3c;
  width: 4vmin;
  height: 4vmin;
  border: 2px solid #1f1f1f;
  border-radius: 50%;
  margin-top: -2vmin;
  transition: all 0.5s ease 0s;
}
input[type=range]::-moz-range-thumb {
  background-color: #3c3c3c;
  width: 4vmin;
  height: 4vmin;
  border: 2px solid #1f1f1f;
  border-radius: 50%;
  transition: all 0.5s ease 0s;
}
input[type=range]::-ms-thumb {
  background-color: #3c3c3c;
  width: 4vmin;
  height: 4vmin;
  border: 2px solid #1f1f1f;
  border-radius: 50
  transition: all 0.5s ease 0s;
}
input[type=range]::-webkit-slider-runnable-track {
  background-color: #3c3c3c;
  transition: all 0.5s ease 0s;
  height: 3px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  outline: none;
}
input[type=range]::-moz-range-track {
  background-color: #3c3c3c;
  transition: all 0.5s ease 0s;
  height: 3px;
  border-color: red;
}
input[type=range]::-ms-track {
  background-color: #3c3c3c;
  transition: all 0.5s ease 0s;
  height: 3px;
}
input[type=range]::-ms-fill-lower {
  background-color: #ff6347
}
input[type=range]::-ms-fill-upper {
  background-color: black;
} 


#switch:checked ~ input[type=range]::-webkit-slider-thumb {
  border-color: #fff;
  background: #c9c9c9;
  transition: all 0.5s ease 0s;
}
#switch:checked ~ input[type=range]::-moz-range-thumb {
  border-color: #fff;
  background: #c9c9c9;
  transition: all 0.5s ease 0s;
}
#switch:checked ~ input[type=range]::-ms-thumb {
  border-color: #fff;
  background: #c9c9c9;
  transition: all 0.5s ease 0s;
}


#switch:checked ~ input[type=range]::-webkit-slider-runnable-track {
  background-color: #c9c9c9;
  transition: all 0.5s ease 0s;
}
#switch:checked ~ input[type=range]::-moz-range-track {
  background-color: #c9c9c9;
  transition: all 0.5s ease 0s;
}
#switch:checked ~ input[type=range]::-ms-track {
  background-color: #c9c9c9;
  transition: all 0.5s ease 0s;
}
              
            
!

JS

              
                function spinSwitch() {
	document.getElementById("box").style.transform =
		"rotateY(" + document.getElementById("turn").value + "deg)";
}

              
            
!
999px

Console