Click "Download" to zip and download images.

Source Code

        var files = ['images/batman.png', 'images/286860169.jpg', 'images/superman.jpg'];
        var packer = new Zipacker({
          zipFile: 'images.zip',
          password: '1234',
          onProgress: function (progress, total) {
            // show progress...
          },
          onDone: function () {
            // show done...
          }
        });
        packer.add(files);
        packer.download();