portal html css js resource

webuploader2.css 2.7KB

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