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.
<!-- Google fonts -->
<link href='https://fonts.googleapis.com/css?family=Vollkorn:400,700' rel='stylesheet' type='text/css'>
<!-- Description -->
<h1 class="description">
Responsive table with json data.
</h1>
<!-- Table demo -->
<div class="box-table">
<table data-fn="contacts" data-url="https://codepen.io/nakome/pen/DnEvr.js"></table>
</div>
/* = body
------------------------*/
body{
background:#1abc9c;
}
.description{
font-family: 'Vollkorn', serif;
text-align:center;
color:#ecf0f1;
text-shadow:0 0.1em 0.2em #008c8d;
}
/* = Scroll body
------------------------*/
::-webkit-scrollbar{
width:0.2em;
}
::-webkit-scrollbar-track{
background-color:#bdc3c7;
}
::-webkit-scrollbar-thumb{
background-color:#7f8c8d;
}
/* = table
------------------------*/
.box-table table{
border-collapse:collapse;
text-align:left;
width:100%;
margin:0;
padding:0;
background:#7f8c8d;
animation: responsive 5s infinite ease-in-out;
}
.box-table{
font:normal 12px/150% Arial, Helvetica, sans-serif;
overflow:hidden;
margin:0 auto;
display:block;
width:95%;
padding:2.5%;
}
.box-table table thead th{
background-color:#7f8c8d;
color:#bdc3c7;
text-align:center;
padding: 0.75em;
font-family: 'Vollkorn', serif;
font-weight: bold;
font-size: 1.5em;
height: 1.5em;
vertical-align: top;
border-left:0.25em double #95a5a6;
}
.box-table table tbody td,
.box-table table tbody tr{
font-family: 'Vollkorn', serif;
font-size:1em;
border:none;
padding:1em;
}
.box-table table tbody tr:nth-child(odd){
background:#ecf0f1;
color:#95a5a6;
}
.box-table table tbody tr:nth-child(even){
background:#bdc3c7;
color:#7f8c8d;
}
.box-table table tbody tr a{
text-decoration:none;
color:#e67e22;
}
.box-table table tbody tr a:hover{
color:#d35400;
}
.box-table .user-photo{
background:#bdc3c7;
}
.box-table .user-tumb{
width:6em;
height:6em;
padding:0;
display:table-cell;
text-align:center;
margin:0 auto;
-webkit-border-radius:100%;
-moz-border-radius:100%;
border-radius:100%;
}
/* = Responsive table
------------------------*/
/* http://elvery.net/demo/responsive-tables/ */
@media only screen and (max-width: 800px){
.box-table table{
width:100%;
border-collapse:collapse;
border-spacing:0;
}
.box-table th,
.box-table td{
margin:0;
vertical-align:top;
}
.box-table th{
text-align:left;
}
.box-table table{
display:block;
position:relative;
width:100%;
}
.box-table thead{
display:block;
float:left;
}
.box-table tbody{
display:block;
width:auto;
position:relative;
overflow-x:auto;
white-space:nowrap;
}
.box-table thead tr{
display:block;
}
.box-table th{
display:block;
text-align:right;
}
.box-table tbody tr{
display:inline-block;
vertical-align:top;
}
.box-table td{
display:block;
min-height:1.25em;
text-align:left;
}
.box-table th{
border-bottom:0;
border-left:0;
}
.box-table td{
border-left:0;
border-right:0;
border-bottom:0;
}
}
/* = Error
------------------------*/
.error_table {
display: block;
background: #E05E5E;
color: #D1D1D1;
font-family: 'Vollkorn', serif;
text-align: center;
font-size: 3em;
width: 90%;
padding: 5%;
}
/* = Loader
------------------------*/
.loading_table{
background:#d35400;
color:#ecf0f1;
font-family: 'Vollkorn', serif;
text-align: center;
font-size: 1em;
width: 0;
display: block;
overflow: hidden;
height: 1em;
padding:0.5em;
animation: table_loader 10s infinite ease;
}
@keyframes table_loader{50%{width:100%}}
@-webkit-keyframes table_loader{50%{width:100%}}
@-moz-keyframes table_loader{50%{width:100%}}
@-ms-keyframes table_loader{50%{width:100%}}
@-o-keyframes table_loader{ 50%{width:100%}}
// Demo json loaded from dropbox
// Data = https://codepen.io/nakome/pen/DnEvr.js
//[
// {
// "photo":"image url ",
// "name":"Jhon",
// "last":"Smith",
// "email":"jhony@site.com",
// "phone":"1-555-222-333",
// "web":"http://jhonSmith.com"
// },
// {
// "photo":"image url",
// "name":"Carla",
// "last":"Doe",
// "email":"carladoe@site.com",
// "phone":"1-333-111-555",
// "web":"http://carladoe.com"
// }
// ]
(function(){
'use-strict';
var elem,
// data-fn
dataFn = $('[data-fn="contacts"]'),
// data-url
thisUrl = dataFn.data('url');
if (typeof $.table_of_contacts == 'undefined')
$.table_of_contacts = {};
$.table_of_contacts.get = {
init: function() {
if(dataFn){
this.getJson();
}else{
dataFn.html('No data found.');
}
},
/* = Get data
------------------------*/
getJson: function(url){
var self = this;
// loading data before
dataFn.html('<span class="loading_table">'+
'Loading Please Wait ....'+
'</span>');
// No ajax cache
$.ajaxSetup({ cache: false });
// Get json
$.getJSON(thisUrl,function(data){
// load template
var out_html = self.tpl();
$.each(data,function(i,obj){
// load inner template
out_html += self.tpl_inner(obj);
});
// close tag
out_html += '</tbody>';
// render templates
dataFn.html(out_html);
// error
}).error(function(j,t,e){
// render error.
dataFn.html('<span class="error_table">'+
'Error = '+e+
'</span>');
});
},
// head table template
tpl: function(){
var html = '<thead>'+
'<tr>'+
'<th>Photo</th>'+
'<th>Name</th>'+
'<th>Last Name</th>'+
'<th>Email</th>'+
'<th>Phone</th>'+
'<th>Web</th>'+
'</tr>'+
'</thead>'+
'<tbody >';
return html;
},
// inner template
tpl_inner: function(obj){
var html= '<tr>'+
'<td class="user-photo">'+
'<img class="user-tumb" src="'+obj.photo+'"/>'+
'</td>'+
'<td>'+obj.name+'</td>'+
'<td>'+obj.last+'</td>'+
'<td>'+obj.email+'</td>'+
'<td>'+obj.phone+'</td>'+
'<td>'+
'<a href="'+obj.web+'" title="'+
obj.name + ' ' + obj.last+'">'+
obj.web +
'</td>'+
'</tr>';
return html;
}
};
// on ready render data
$(document).ready(function() {
$.table_of_contacts.get.init();
});
})().call(this);
Also see: Tab Triggers