transparentUpload.html 1.84 KB
Newer Older
jatuporn Tonggasem's avatar
jatuporn Tonggasem committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
<!DOCTYPE html>
<html>
<head>
  <title>Upload Form</title>
  <style>
    .fileUpload {
      position: relative;
      overflow: hidden;
      margin: 10px;
	  background-color: #FFFFFF;
      width: 50px;
      text-align: center;
    }
    .fileUpload input.upload {
      position: absolute;
      top: 0;
      right: 0;
      margin: 0;
      padding: 0;
      font-size: 20px;
      cursor: pointer;
      opacity: 0;
      filter: alpha(opacity=0);
      height: 100%;
      text-align: center;
    }
  </style>
  <script>
      var intervalId;
      function onTick() {
          var label = document.getElementById('upload_label');
          label.innerHTML += '.';
      }

      function onUploadSubmit() {
          document.getElementById('upload_target').contentWindow.document.body.
          innerHTML = '';
          var label = document.getElementById('upload_label');
          label.innerHTML = 'Uploading "' + document.forms[0].upload.value + '"';
          label.style.display = '';
          intervalId = window.setInterval(onTick, 500);
          return true;
      }

      function onUploadDone() {
          var label = document.getElementById('upload_label');
          label.style.display = 'none';
          window.clearInterval(intervalId);
          return true;
      }
  </script>
</head>
<body>
<form action="/common/upload" method="post" name="upload_form"
      target="upload_target" enctype="multipart/form-data"
      onsubmit="onUploadSubmit();">
  <div>
    <div class="fileUpload">
      <span>Upload</span>
      <input id="upload" name="upload" type="file" class="upload" />
    </div>
    <div><input id="go" type="submit" value="Go!"/></div>
  </div>
  <div id="upload_label" style="display:none"></div>
  <iframe src="" id="upload_target" name="upload_target"
          style="width:300px;height:200px">
  </iframe>
</form>
</body>
</html>