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

              
                <a href="http://reportcard.rileyh.com/">* This is now an open source jQuery plugin</a>
<!-- Badges Container -->
<div class="badge-container">
  
  <!-- Title Markup -->
  <h1 id="treehouse-count"></h1>
  
  <!-- ul tag where badge li's are appended -->
  <ul id="badges"></ul>
</div>
              
            
!

CSS

              
                /* Controls width of the widget */
.badge-container {width:700px; margin: 0 auto;}

/* Makes Badges display inline */
#badges li { display: inline;}

/* Controls badges row offset. THIS FUNCTION WILL CHANGE BASED ON THE NUMBER OF BADGES PER ROW */
/* Indent 30px every eleventh badge, repeat every 20 badges */
#badges li:nth-child(20n+11) {margin-left:30px;}

/* Controls badges size and alignment */
#badges li img {
  width: 60px; 
  margin:-17px 2px 0px 0px;
}

/* Controls Header Formatting */
.badge-container h1 {
  text-align:center; 
  font-family: 'Helvetica Neue'; 
  font-weight: bold; 
  -webkit-font-smoothing: antialiased;
}

/* Controls badges on-hover opacity */
#badges li img:hover {opacity:.7;}
              
            
!

JS

              
                // When Document is ready, build treehouse Badge Widget 
$(document).ready(function () {

  // Replace the value for var 'e' with your Treehouse Username
  var e = "rileyhilliard",
  
  // Treehouse Json 
  t = "https://teamtreehouse.com/" + e + ".json",
  
  // Badges JQuery Identifier    
  n = $("#badges"),
  
  // Badges Array    
  r = [],
  
  // Badges Count
  i = 0;
  
  // Json Parse Treehouse User Badges Info
  $.getJSON(t, function (e) {
    
    // User Json Parse Select Badges Info
  	var t = e.badges;
    
    // Construct Each badge's HTML
  	$.each(t, function (e, t) {
  	 r += '<li><a href="' + t.url + '" target="_blank"><img src="' + t.icon_url + '" alt="' + t.name + '" title="' + t.name + '"/></a></li>';
  		i++
  	});
    
    // Append Badge to #badges
  	n.append(r);
    
    // Header Badges count generator
  	$("#treehouse-count").append('I have earned ' + i + ' badges at Treehouse!');
  });
});
              
            
!
999px

Console