JavaScript preprocessors can help make authoring JavaScript easier and more convenient. For instance, CoffeeScript can help prevent easy-to-make mistakes and offer a cleaner syntax and Babel can bring ECMAScript 6 features to browsers that only support ECMAScript 5.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
HTML Settings
Here you can Sed posuere consectetur est at lobortis. Donec ullamcorper nulla non metus auctor fringilla. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
<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>
.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
// Use an adjacent `previewsContainer` to
// display the photo thumbnails, their upload
// progress, and success or failure state
uploader = new Shubox("#shubox--upload-target", {
transformName: 'multi-upload',
previewsContainer: '#shubox--upload-preview',
addedfile: function(){ console.log('added') },
success: function(){ console.log('file uploaded') },
queuecomplete: function(){ console.log('done') }
})
Also see: Tab Triggers