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="shubox--container">
  <form class="shubox--form codepen--center">
    <div class="shubox--upload-target"
         id="shubox--upload-target"></div>
    
    <div class="shubox--upload-preview"
         id="shubox--upload-preview"></div>
  </form>
</div> 
              
            
!

CSS

              
                .codepen--center
  overflow: hidden
  

.dz
  &-progress
    display: block
    position: absolute
    bottom: 5px
    left: 5px
    right: 5px
  &-upload
    border-radius: 3px
    height: 5px
    background: #bce29e
    display: block
    clear: both
    &[style="width: 100%;"]
      display: none

  &-error-message
  &-filename,
  &-size,
  &-success-mark,
  &-error-mark
    display: none

.dz-complete.dz-success .dz-success-mark,
.dz-complete.dz-error .dz-error-mark
  display: block
  position: absolute
  right: 5px
  bottom: 0px
  text-shadow: 1px 1px white
.dz-error .dz-error-mark
  color: red
.dz-success .dz-success-mark
  color: green

.shubox--form
  padding: 3rem
  text-align: left

.shubox--upload-target
  margin-right: 1rem
  margin-bottom: 1rem
  display: inline-block
  float: left
  text-align: center
  width: 4rem
  height: 4rem
  border: dashed 3px gray
  cursor: pointer
  &:hover
    border-color: silver
  &:before
    content: 'Drag && Drop || Click'
    font-size: .6rem
    color: silver
    display: block
    font-family: courier
    margin-top: .4rem
    line-height: 1rem

.shubox--upload-preview
  overflow: hidden
  
  & > div
    display: inline-block
    position: relative
    width: 4rem
    height: 4rem
    margin-right: 1rem
              
            
!

JS

              
                // Use an adjacent `previewsContainer` to
// display the photo thumbnails, their upload
// progress, and success or failure state

uploader = new Shubox("#shubox--upload-target", {
  key: "7e1e4069",
  transformName: 'multi-upload',
  previewsContainer: '#shubox--upload-preview',
  addedfile: function(){ console.log('added') },
  success: function(){ console.log('file uploaded') },
  queuecomplete: function(){ console.log('done') },
  s3Key: "multis/{{filename}}",
  transformCallbacks: {
    ".webp": function(shuboxFile) {
      console.log(shuboxFile.transforms[".webp"].s3url);
    },
    "200x200#": function(shuboxFile) {
      console.log(shuboxFile.transforms["200x200#"].s3url);
    },
    "400x400": function(shuboxFile) {
      console.log(shuboxFile.transforms["400x400"].s3url);
    },
    "800x800": function(shuboxFile) {
      console.log(shuboxFile.transforms["800x800"].s3url);
    }
  }
})
              
            
!
999px

Console