RWD Font-Size

.fs-1 text

.fs-2 text

.fs-3 text

.fs-4 text

.fs-5 text

.fs-6 text

New Switch like iOS

New Table

# First Last Handle
1 Mark Otto @mdo
2 Jacob Thornton @fat
3 Larry the Bird @twitter

Uploads

File Upload1

Drag and drop a file here or click

Ooops, something wrong appended.

    Drag and drop or click to replace

    File Upload2

    Drag and drop a file here or click

    Ooops, something wrong appended.

      test-image-1.jpg

      Drag and drop or click to replace

      File Upload3

      Drag and drop a file here or click

      Ooops, something wrong appended.

        Drag and drop or click to replace

        File Upload4

        Drag and drop a file here or click

        Ooops, something wrong appended.

          test-image-2.jpg

          Drag and drop or click to replace

          File Upload5

          Drag and drop a file here or click

          Ooops, something wrong appended.

            Drag and drop or click to replace

            File Upload6

            Drag and drop a file here or click

            Ooops, something wrong appended.

              Drag and drop or click to replace

              $(document).ready(function() { // Basic $('.dropify').dropify(); // Translated $('.dropify-fr').dropify({ messages: { default: 'Glissez-déposez un fichier ici ou cliquez', replace: 'Glissez-déposez un fichier ou cliquez pour remplacer', remove: 'Supprimer', error: 'Désolé, le fichier trop volumineux' } }); // Used events var drEvent = $('#input-file-events').dropify(); drEvent.on('dropify.beforeClear', function(event, element) { return confirm("Do you really want to delete \"" + element.file.name + "\" ?"); }); drEvent.on('dropify.afterClear', function(event, element) { alert('File deleted'); }); drEvent.on('dropify.errors', function(event, element) { console.log('Has Errors'); }); var drDestroy = $('#input-file-to-destroy').dropify(); drDestroy = drDestroy.data('dropify') $('#toggleDropify').on('click', function(e) { e.preventDefault(); if (drDestroy.isDropified()) { drDestroy.destroy(); } else { drDestroy.init(); } }) });