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

Save Automatically?

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 id="app" class="app">
  <spinner></spinner>
</div>
              
            
!

CSS

              
                :root {
  --svg-width: 80px;
}

.app {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
	position: relative;
	border-radius: 50%;;
	width: var(--svg-width);
	height: var(--svg-width);
	display: flex;
	justify-content: center;
	align-items: center;
	background: #90CAF9;
		box-shadow: inset 
  0 0 34px rgba(0, 0, 0, 0.21);
}

.spin {
	border-radius: 50%;
	position: absolute;
	border: 2px solid transparent;
}

.s-1 {
	border-top-color: #455A64;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	animation: spin 1.5s linear infinite;
}

svg {
	height: 60%;
	width: 60%;
	z-index: 10;
  fill: #455A64
}

@keyframes spin{
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
              
            
!

JS

              
                Vue.component("spinner", {
  template: `
  <div class="spinner">
		<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 333333 252080" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd"><path d="M302098 39137l24475-25214C292542-11863 217012 1750 184451 25714c-15966-4733-31704-5156-47876-4460-38843 1669-6290 33733 6128 46425-10395 16805-19891 34207-28921 51915-6901 18800-21389 25987-42146 23569l-22954-4568c-12150-2418-55281-14849-47820 10299 7468 16277 25792 30516 45198 44550 1671 11102 4398 22486 7581 33993 9090 32844 23129 32258 32689 1833l13152-41847c4067-14950 12540-21676 23527-22620 33546-2880 61322 9032 106382-5032 2023 11758 5337 23248 9631 34538 4721 8283 11442 9099 21120-1119 9671-16323 15866-34731 19076-54931 33548-34766 57189-83527 53792-112210l-30910 13090zm-27369-23973c-6894-1848-13984 2244-15832 9139-1846 6896 2245 13985 9141 15832 6896 1848 13983-2246 15832-9142 1847-6894-2246-13983-9141-15830z"/></svg>
		<div class="spin s-1"></div>
	</div>`
});

const app = new Vue({
  el: "#app",
  data: {
    message: "Hello Vue!"
  }
});

              
            
!
999px

Console