index.wxss 938 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. page{
  2. height: 100%;
  3. }
  4. .preview_box{
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. bottom: 0;
  9. right: 0;
  10. background: #000;
  11. white-space: nowrap;
  12. transition: all .3s;
  13. height: 100%;
  14. z-index: 99999;
  15. }
  16. .preview_box>.totalimg{
  17. color: #fff;
  18. position: absolute;
  19. z-index: 999;
  20. top: 100rpx;
  21. display: flex;
  22. justify-content: center;
  23. width: 100%;
  24. }
  25. .preview_box>.preview_box1{
  26. height: 100%;
  27. position: relative;
  28. }
  29. .img_box{
  30. position: relative;
  31. display: inline-block;
  32. width: 100%;
  33. height: 100%;
  34. }
  35. .img_box>view{
  36. width: 100%;
  37. height: 100%;
  38. display: flex;
  39. align-items: center;
  40. justify-items: center;
  41. }
  42. movable-view {
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. height: 100%;
  47. width: 100%;
  48. color: #fff;
  49. }
  50. movable-area {
  51. height: 100%;
  52. width: 100%;
  53. overflow: hidden;
  54. }