zoomimage.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. .zoomimage {
  2. position: absolute;
  3. display: none;
  4. z-index: 5000;
  5. outline: none;
  6. cursor: url(../images/zoomout.cur), default;
  7. }
  8. .zoomimage_focused {
  9. z-index: 51000;
  10. }
  11. .zoomimage_s {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. height: 100%;
  16. width: 100%;
  17. display: none;
  18. }
  19. .zoomimage_st {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. width: 100%;
  24. height: 6px;
  25. overflow: hidden;
  26. }
  27. .zoomimage_stl {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. width: 6px;
  32. height: 6px;
  33. overflow: hidden;
  34. background:transparent url(../images/shadow.png) no-repeat scroll 0 0;
  35. }
  36. .zoomimage_stc {
  37. overflow: hidden;
  38. height: 6px;
  39. margin: 0 6px;
  40. background: transparent url(../images/shadow.png) repeat-x scroll 0 -30px;
  41. }
  42. .zoomimage_str {
  43. position: absolute;
  44. top: 0;
  45. right: 0;
  46. width: 6px;
  47. height: 6px;
  48. overflow: hidden;
  49. background:transparent url(../images/shadow.png) no-repeat scroll 0 -18px;
  50. }
  51. .zoomimage_sc {
  52. position: absolute;
  53. top: 6px;
  54. width: 100%;
  55. left: 0;
  56. overflow: hidden;
  57. }
  58. .zoomimage_scl {
  59. position: absolute;
  60. overflow: hidden;
  61. top: 0;
  62. left: 0;
  63. height: 100%;
  64. width: 6px;
  65. background: transparent url(../images/shadow-lr.png) repeat-y scroll 0pt;
  66. }
  67. .zoomimage_scr {
  68. position: absolute;
  69. overflow: hidden;
  70. right: 0;
  71. top: 0;
  72. height: 100%;
  73. width: 6px;
  74. background:transparent url(../images/shadow-lr.png) repeat-y scroll -6px 0pt
  75. }
  76. .zoomimage_scc {
  77. margin: 0 6px;
  78. height: 100%;
  79. background:transparent url(../images/shadow-c.png);
  80. overflow: hidden;
  81. }
  82. .zoomimage_sb {
  83. position: absolute;
  84. overflow: hidden;
  85. bottom: 0;
  86. left: 0;
  87. width: 100%;
  88. height: 6px;
  89. }
  90. .zoomimage_sbl {
  91. position: absolute;
  92. overflow: hidden;
  93. width: 6px;
  94. height: 6px;
  95. left: 0;
  96. top: 0;
  97. background:transparent url(../images/shadow.png) no-repeat scroll 0pt -12px;
  98. }
  99. .zoomimage_sbc {
  100. height: 6px;
  101. overflow: hidden;
  102. margin: 0 6px;
  103. background:transparent url(../images/shadow.png) repeat-x scroll 0pt -36px;
  104. }
  105. .zoomimage_sbr {
  106. position: absolute;
  107. overflow: hidden;
  108. width: 6px;
  109. height: 6px;
  110. right: 0;
  111. top: 0;
  112. background:transparent url(../images/shadow.png) no-repeat scroll 0pt -6px;
  113. }
  114. .zoomimage img {
  115. position: absolute;
  116. top: 6px;
  117. left: 6px;
  118. display: none;
  119. border: 20px solid #000;
  120. }
  121. .zoomimage_caption {
  122. position: absolute;
  123. background-color: #fff;
  124. color: #000;
  125. width: 100%;
  126. }
  127. .zoomimage_caption p {
  128. padding: 10px;
  129. margin: 0;
  130. font-size: 11px;
  131. font-weight: bold;
  132. }
  133. .zoomimage_loading {
  134. background-image: url(../images/ajax_small.gif);
  135. background-repeat: no-repeat;
  136. background-position: center;
  137. height: 100%;
  138. position: absolute;
  139. background-color: #fff;
  140. width: 100%;
  141. top: 0;
  142. left: 0;
  143. }
  144. .zoomimage_move {
  145. cursor: move;
  146. }
  147. .zoomimage_controls {
  148. position: absolute;
  149. background: #fff;
  150. height: 30px;
  151. overflow: hidden;
  152. }
  153. .zoomimage_prev {
  154. background: #fff url(../images/zoomimage_prev.gif) no-repeat center;
  155. width: 39px;
  156. height: 29px;
  157. position: absolute;
  158. bottom: 1px;
  159. left: 10px;
  160. }
  161. .zoomimage_next {
  162. background: #fff url(../images/zoomimage_next.gif) no-repeat center;
  163. width: 39px;
  164. height: 29px;
  165. position: absolute;
  166. bottom: 1px;
  167. right: 10px;
  168. }