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></div>
<div></div>
              
            
!

CSS

              
                div {
  height: calc(50% - 4px);
  overflow: hidden;
}
div + div {
  margin-top: 8px;
}
canvas {
  width: 100%;
}
html, body {
  height: 100%;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 8px;
}

              
            
!

JS

              
                // https://gammacv.com
const imgURL = 'https://source.unsplash.com/random/500x400?random=' + Math.random();
const width = 500;
const height = 400;

// load image from URL or base64 string and store a result in input tensor
gm.imageTensorFromURL(imgURL, 'uint8', [height, width, 4], true).then((input) => {
  // the input is already a valid operation that can be chained
  // notice the use of 'let'. We are going to reuse the pipeline variable
  let pipeline = input

  // operations always return a valid input for another operation.
  // if you are a functional programmer, you could easily compose these.
  pipeline = gm.grayscale(pipeline);
  pipeline = gm.gaussianBlur(pipeline, 3, 3);
  pipeline = gm.sobelOperator(pipeline);
  pipeline = gm.cannyEdges(pipeline, 0.25, 0.75);

  // allocate output tensor
  const output = gm.tensorFrom(pipeline);
  const sess = new gm.Session();

  sess.init(pipeline);

  // run your operation
  sess.runOp(pipeline, 0, output);

  // display your output
  const canvasOriginal = gm.canvasCreate(width, height);
  const canvasProcessed = gm.canvasCreate(width, height);

  document.body.children[0].appendChild(canvasProcessed);
  document.body.children[1].appendChild(canvasOriginal);
  gm.canvasFromTensor(canvasOriginal, input);
  gm.canvasFromTensor(canvasProcessed, output);
});
              
            
!
999px

Console