upVideo.php 948 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
  6. <title></title>
  7. <style>
  8. div{width: 100%;}
  9. .logo img{display:block; margin:0 auto;}
  10. .upload{position: relative;width: 80px;height: 18px;line-height: 18px;background: #2fc7c9;text-align: center;
  11. color: #FFF;padding: 0px 5px;-webkit-border-radius: 2px;border-radius: 2px;
  12. margin: 0 auto;
  13. }
  14. .upload form{width:100%;position:absolute; left:0; top:0;opacity:0; filter:alpha(opacity=0);}
  15. .upload form input{width: 100%;}
  16. </style>
  17. </head>
  18. <body>
  19. <div class="upload">
  20. <p>图片上传</p>
  21. <form>
  22. <input type="file" />
  23. </form>
  24. </div>
  25. <div style="top:30px;">
  26. <p>视频上传</p>
  27. <form>
  28. <input type="file" />
  29. </form>
  30. </div>
  31. </body>
  32. </html>