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

              
                <form>
	<input id="a" type="radio" name="hopping" value="a" checked>
	<label for="a"><span></span>A</label>
	<input id="b" type="radio" name="hopping" value="b">
	<label for="b"><span></span>B</label>
	<input id="c" type="radio" name="hopping" value="c">
	<label for="c"><span></span>C</label>
	<div class="worm">
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
		<div class="worm__segment"></div>
	</div>
</form>
              
            
!

CSS

              
                $wormDur: 0.4s
$radioDur: 0.2s
$timing1: cubic-bezier(0.45,0.05,0.55,0.95)
$timing2: cubic-bezier(0.5,0,0.5,2)
$radios: 3

*
	border: 0
	box-sizing: border-box
	margin: 0
	padding: 0

\:root
	font-size: calc(32px + (40 - 32)*(100vw - 320px)/ (1024 - 320))

body
	background: #e3e4e8
	color: #17181c
	display: flex
	font: 1em Hind, sans-serif
	height: 100vh
	line-height: 1.5
	padding: 1.5em 0

form
	display: block
	margin: auto
	max-width: 10em
	position: relative

input
	position: fixed
	top: -1.5em
	left: -1.5em

label
	$shadowColor: rgba(0,0,0,0.2)
	cursor: pointer
	display: block
	font-weight: bold
	text-shadow: 0 0.1em 0.1em $shadowColor
	transition: color $radioDur $timing1
	&:not(:last-of-type)
		margin-bottom: 1.5em
	span
		box-shadow: 0 0 0 0.2em currentColor inset, 0 0.2em 0.2em $shadowColor, 0 0.3em 0.2em $shadowColor inset
		display: inline-block
		margin-right: 0.5em
		vertical-align: bottom
		width: 1.5em
		height: 1.5em
		transition: transform $radioDur $timing2, box-shadow $radioDur $timing1, color $radioDur $timing1

label span,
.worm__segment:before
	border-radius: 50%

input:checked + label,
input:checked + label span,
.worm__segment:before
	color: #255ff4

input:checked + label
	&, span
		transition-delay: $wormDur
	span
		transform: scale(1.2)

.worm
	top: 0.375em
	left: 0.375em
	&, &__segment
		position: absolute
	&__segment
		top: 0
		left: 0
		width: 0.75em
		height: 0.75em
		transition: transform $wormDur $timing1
		&:before
			animation-duration: $wormDur
			animation-timing-function: $timing1
			background: currentColor
			content: ""
			display: block
			width: 100%
			height: 100%
		&:first-child, &:last-child
			&:before
				box-shadow: 0 0 1em 0 currentColor

@for $s from 2 through 30
	$delay: $wormDur/100 * ($s - 1)
	.worm__segment:nth-child(#{$s})
		transition-delay: $delay
		&:before
			animation-delay: $delay

/* States */
@for $s from 1 through $radios
	input:nth-of-type(#{$s}):checked ~ .worm .worm__segment
		@if $s > 1
			transform: translateY(3em * ($s - 1))
		&:before
			animation-name: hop#{$s}

	@keyframes hop#{$s}
		from, to
			transform: translateX(0)
		50%
			transform: translateX(-1.5em)

/* Dark mode */
@media screen and (prefers-color-scheme: dark)
	body
		background: #17181c
		color: #e3e4e8
	
	input:checked + label,
	input:checked + label span, 
	.worm__segment:before
		color: #5583f6
              
            
!

JS

              
                
              
            
!
999px

Console