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

              
                <body>
  <h2>AngularJS Responsive Data Table</h2>
  <div ng-app="ngAnimate">
    <div ng-controller="dataTable">
      <div class='addItems'>
        <table id='addData'>
          <thead>
            <tr>
              <td colspan='4'>
                Add New Contact
              </td>
              <tr>
          </thead>
          <tr>
            <td colspan="1">
              <label>ID:</label>
            </td>
            <td colspan="1">
              <input type="text" ng-model="item.id" />
            </td>
            <td colspan="1">
              <label>Name:
                <label>
            </td>
            <td colspan="1">
              <input type="text" ng-model="item.name" />
            </td>
            <tr>
              <td colspan="1">
                <label>City:</label>
              </td>
              <td colspan="1">
                <input type="text" ng-model="item.city" />
              </td>
              <td colspan="1">
                <label>State:</label>
              </td>
              <td colspan="1">
                <input type='text' ng-model="item.state" />
              </td>
            </tr>
            <tr>
              <td colspan="1">
                <label>Phone:</label>
              </td>
              <td colspan="2">
                <input type="tel" ng-model="item.phone" />
              </td>
              <td colspan="1"></td>
            </tr>
            <tr>
              <td colspan="1"></td>
              <td colspan="1">
                <input type="Button" class='add' value="Add" ng-click="addItem(item)" />
              </td>
              <td colspan="1"></td>
              <td colspan="1">
                <input type="button" class='close' value="Done" />
              </td>
            </tr>
        </table>
      </div>
      <div class="resp-table">
        <table id='main' class="animate-container" border="1">
          <thead>
            <tr class='act'>
              <td colspan="8" id='search'>
                <input type='text' id='search' placeholder="Search Items" ng-model="searchItems">
              </td>


              <td colspan="6" class='add'>
                <input type="button" class='insert' value="Insert Data" />
              </td>
            </tr>
            <tr class="animate-repeat" id='labels'>
              <td colspan='1'>ID</td>
              <td colspan='4'>Name</td>
              <td colspan='3'>City</td>
              <td colspan='2'>State</td>
              <td colspan='3'>Phone Number</td>
              <td colspan='1'>Remove Item</td>
            </tr>
          </thead>
          <tbody>
            <tr class="animate-repeat" ng-repeat="item in items | filter:searchItems">
              <td data-title="ID:" colspan='1'>{{item.id}}</td>
              <td data-title="Name:" colspan='4'>{{item.name}}</td>
              <td data-title="City:" colspan='3'>{{item.city}}</td>
              <td data-title="State:" colspan='2'>{{item.state}}</td>
              <td data-title="Phone:" colspan='3'>{{item.phone}}</td>
              <td data-title="" colspan='1' id = 'rem'>
                <input type="button" value="Delete" ng-click="removeItem($index)" />
              </td>
            </tr>
          </tbody>
        </table>
      </div>
    </div>
  </div>
  <br />
  <p>
    <b>Features:</b>
    <ul>
      <li>Search / Filter Data via Search Bar</li>
      <li>Add Additional Data Row via Insert Data Button</li>
      <li>Remove Data Row via Corresponding Delete Button</li>
      <li>Responsive Data Organization on Resize</li>
    </ul>
  </p>
</body>
              
            
!

CSS

              
                @import url(https://fonts.googleapis.com/css?family=Oxygen);
*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  position: relative;
  padding: 0;
  min-height: 100%;
}

body {
  background: #272b30;
  background-image: radial-gradient(top, circle cover, #3c3b52 0%, #272b30 80%);
  position: relative;
  min-height: 100%;
  height: 100%;
  font-family: 'Oxygen', sans-serif;
  font-size:1.1em;
  letter-spacing:1.2px;
}
h2{
  margin:5% 0;
  text-align:center;
  color: #D6D7E3;
}
#main {
  margin: 20px auto;
  max-width: 960px;
  border-collapse: collapse;
  border-spacing: 0px;
  border:#272b30;
}

table td {
  padding: 1em;
}

table thead {
   background: #272b30;
  background-image: radial-gradient(top, circle cover, #3c3b52 0%, #272b30 80%);
  color: #D6D7E3;
  text-align: center;
  font-weight: bold;
  text-transform:uppercase;
  border-color:#3c3b52;
}

tbody tr {
  background: #D3D2DA;
}

tbody tr:nth-child(odd) {
  background: #F5F4F4;
}

.animate-container {}

.animate-repeat {}

.animate-repeat.ng-move,
.animate-repeat.ng-enter,
.animate-repeat.ng-leave {
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
}

.animate-repeat.ng-leave.ng-leave-active,
.animate-repeat.ng-move,
.animate-repeat.ng-enter {
  opacity: 0;
  max-height: 0;
}

.animate-repeat.ng-leave,
.animate-repeat.ng-move.ng-move-active,
.animate-repeat.ng-enter.ng-enter-active {
  opacity: 1;
  max-height: 40px;
}
#rem{
  text-align:center;
}
input[type='button'] {
  background: #e9e8ec;
  width: 8em;
  padding: .4em;
  font-size: 1em;
  border-radius: 2%;
  border: 1px solid #323C50;
  color: #272b30;
  transition: all 0.6s ease 0s;
  transition-duration: 0.3s;
}

input[type='button']:hover {
  background: #FFF;
  box-shadow: inset 0 0 0 1px #6A5A5B;
  color: #6A5A5B;
}

input[type='text'], input[type='tel'] {
  border: 1px solid white;
  box-shadow: inset 0 0 8px hsla(0, 0%, 0%, 0.1), 0 0 16px hsla(0, 0%, 0%, 0.1);
  padding: .3em;
  background: hsla(255, 255%, 255%, 0.5);
}

#search input {
  width: 15em;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAAAEgAAABIAEbJaz4AAAAJdnBBZwAAABAAAAAQAFzGrcMAAADcSURBVCjPhdG9TgJhEIXh58M1EGEFjEohiUGk4f4vBaSy0UYRBFEIP8JaLEvWhOjbTc6bzMlMSPxNRICGpopgZejJJosTIRGCtjtLE1uxmrGeZSZEaGh5NzBH5Na9jp7ksMKNtQcL8O1R2bXYLBUKqBjv45QXJ86yoYBg96v4zr55JqzECjmhamedF4ZqWoe4runTJHcHzy60lb3aqmo6tVHJSoZEoKTjSoSdL5GShZ5ZdqhUPVcWrEzVdRXN9X3khTyXuooW+sm04BgjAyux+7TkMd4kWkaE/979AxXnQ1s0DN1UAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDEwLTAyLTExVDExOjUwOjA4LTA2OjAw1hBl+wAAACV0RVh0ZGF0ZTptb2RpZnkAMjAwNi0wNS0wNVQxMzoyMjo0MC0wNTowML/k/hoAAAAASUVORK5CYII=) no-repeat 10px center #fff;
  transition: all .3s ease-in-out;
  padding: 5px 10px 5px 30px;
}

#search input:active,
#search input:focus {
  background-position: 95% center;
  padding-left: 10px;
  padding-right: 30px
}

.addItems {
  z-index: 1;
  position: fixed;
  background-color: hsla(0, 0%, 0%, 0.6);
  min-width: 100%;
  width: 100%;
  min-height: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display:none;
}
#addData{
  margin:5% auto;
}
.addItems > #addData > tbody > tr > td > label{
     font-weight:bold;
}
p, ul{
  color: #D6D7E3;
  list-style-type: circle;
  margin-left:5%;
}
@media screen and (max-width: 820px) {
  .resp-table > #main {
    margin-bottom: 0;
    background: #3D4C60;
    background-image: radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
  }
  .resp-table > #main > thead > #labels,
  .resp-table > #main > tfoot {
    display: none;
  }
  .resp-table > #main > thead >.act {
    display: inline-block;
  }
  .resp-table > #main > tbody {
    display: block;
  }
  .resp-table > #main > tbody > tr {
    display: block;
    border: 1px solid #3D4C60;
    border-radius: 2px;
  }
  .resp-table > #main > tbody > tr > td {
    display: block;
    vertical-align: middle;
    text-align: right;
  }
  .resp-table > #main > tbody > tr > td[data-title]:before {
    content: attr(data-title);
    font-weight: bold;
    float: left;
    font-size: inherit;
    color: #757575;
  }
  
  .addItems > #addData > tbody > tr > td {
    background-color:#F5F4F4;
    display: block;
    vertical-align: middle;
    text-align: center;
    padding:.2em 5em .2em 5em;
  }
}
              
            
!

JS

              
                $(document).ready(function(){
  $('.insert').click(function(){
      $('.addItems').show( "slow" );
  });
  $('.close').click(function(){
  $('.addItems').hide('slide',{direction:'down'},'slow');
  });
});


function dataTable($scope)  {
		$scope.items = [
    {
		id:'11111',
		name:'JohnDoe Number1',
		city:'Angel',
		state:'AA',
		phone:'111-111-1111'
	},
	{
	  id:'22222',
		name:'JaneDoe Number1',
		city:'Bigfoot',
		state:'AB',
		phone:'222-222-2222'
	},
    {
		id:'33333',
		name:'JohnDoe Number2',
		city:'Comfy',
		state:'AC',
		phone:'333-333-3333'
	},
    {
		id:'44444',
		name:'JaneDoe Number2',
		city:'Dreamy',
		state:'AD',
		phone:'444-444-4444'
	}];
		$scope.addItem = function(item) {
			$scope.items.push(item);
      $scope.item = {};
		}
		$scope.removeItem = function(index){
			$scope.items.splice(index,1);
		}
	};

              
            
!
999px

Console