portal html css js resource

webuploader2.css 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .webuploader-container {
  2. position: relative;
  3. position: relative;
  4. width: 100px;
  5. height: 100px;
  6. float: left;
  7. margin-right: 20px;
  8. }
  9. .webuploader-element-invisible {
  10. position: absolute !important;
  11. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  12. clip: rect(1px,1px,1px,1px);
  13. }
  14. .webuploader-pick {
  15. position: relative;
  16. display: inline-block;
  17. cursor: pointer;
  18. padding: 10px 15px;
  19. color: #fff;
  20. text-align: center;
  21. border-radius: 5px;
  22. overflow: hidden;
  23. border: 1px solid #ddd;
  24. background:#f0f0f0 url(../../images/up.png) no-repeat center;
  25. }
  26. .webuploader-pick-disable {
  27. opacity: 0.6;
  28. pointer-events:none;
  29. }
  30. /*demo样式*/
  31. #picker {
  32. display: inline-block;
  33. line-height: 1.428571429;
  34. vertical-align: middle;
  35. margin: 0 12px 0 0;
  36. }
  37. #picker .webuploader-pick {
  38. padding: 6px 12px;
  39. display: block;
  40. }
  41. #uploader-demo .thumbnail {
  42. width: 110px;
  43. height: 110px;
  44. }
  45. #uploader-demo .thumbnail img {
  46. width: 100%;
  47. }
  48. .uploader-list {
  49. width: 100%;
  50. overflow: hidden;
  51. }
  52. .file-item {
  53. float: left;
  54. position: relative;
  55. margin: 0 20px 20px 0;
  56. padding: 4px;
  57. width:100px;
  58. heigth:100px;
  59. }
  60. @-webkit-keyframes progressmove {
  61. 0% {
  62. background-position: 0 0;
  63. }
  64. 100% {
  65. background-position: 17px 0;
  66. }
  67. }
  68. @-moz-keyframes progressmove {
  69. 0% {
  70. background-position: 0 0;
  71. }
  72. 100% {
  73. background-position: 17px 0;
  74. }
  75. }
  76. @keyframes progressmove {
  77. 0% {
  78. background-position: 0 0;
  79. }
  80. 100% {
  81. background-position: 17px 0;
  82. }
  83. }
  84. a.travis {
  85. position: relative;
  86. top: -4px;
  87. right: 15px;
  88. }
  89. #uploader-dome .file-panel{
  90. position: absolute;
  91. height: 0;
  92. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#80000000', endColorstr='#80000000')\0;
  93. background: rgba( 0, 0, 0, 0.5 );
  94. width: 100%;
  95. top: 0;
  96. left: 0;
  97. overflow: hidden;
  98. z-index: 300;
  99. }
  100. #uploader-dome .file-panel span {
  101. width: 24px;
  102. height: 24px;
  103. display: inline;
  104. float: right;
  105. text-indent: -9999px;
  106. overflow: hidden;
  107. background: url(../../images/icons.png) no-repeat;
  108. margin: 5px 1px 1px;
  109. cursor: pointer;
  110. }
  111. #uploader-dome .file-panel span.cancel {
  112. background-position: -48px -24px;
  113. }
  114. #uploader-dome .file-panel span.cancel:hover {
  115. background-position: -48px 0;
  116. }
  117. .subUp{ padding: 8px 0px;
  118. background: #ff9900;
  119. border-radius: 4px;
  120. color: #fff;
  121. width: 100px;
  122. float: right;
  123. margin-top: 10px;
  124. text-align: center;
  125. cursor: pointer;}