index.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* miniprogram/pages/marvellous/template/videoAn/index.wxss */
  2. .door {
  3. top: 0;
  4. left: 0;
  5. position: fixed;
  6. width: 750rpx;
  7. height: 100vh;
  8. z-index: 1;
  9. }
  10. .door .transverse{
  11. white-space: nowrap;
  12. overflow: hidden;
  13. width: 1500rpx;
  14. left: -375rpx;
  15. position: absolute;
  16. height: 100vh;
  17. z-index: 3;
  18. text-align: center;
  19. }
  20. .door .transverse .right,
  21. .door .transverse .left{
  22. width: 375rpx;
  23. height: 100vh;
  24. }
  25. .door .transverse .center{
  26. width: 0;
  27. }
  28. .door .transverse .right,
  29. .door .transverse .left,
  30. .door .transverse .center{
  31. display: inline-block;
  32. }
  33. .door .portrait{
  34. height: 200vh;
  35. margin-top: -50vh;
  36. }
  37. .door .portrait .port{
  38. position: absolute;
  39. overflow: hidden;
  40. top: 50%;
  41. transform: translateY(-50%);
  42. width: 750rpx;
  43. font-size: 0;
  44. }
  45. .door .port .up,
  46. .door .port .down{
  47. height: 50vh;
  48. width: 750rpx;
  49. }
  50. .door .portrait .center{
  51. height: 0;
  52. }
  53. .door .tip {
  54. position: absolute;
  55. text-align: center;
  56. font-size: 18px;
  57. bottom: 20rpx;
  58. color: #eee;
  59. width: 750rpx;
  60. z-index: 4;
  61. animation: mymove 2s infinite;
  62. }
  63. @keyframes mymove {
  64. 0% {
  65. opacity: 1;
  66. }
  67. 50% {
  68. opacity: 0;
  69. }
  70. 100% {
  71. opacity: 1;
  72. }
  73. }
  74. .door .width100{
  75. animation: width100 1.5s;
  76. }
  77. .door .height100{
  78. animation: height100 1.5s;
  79. }
  80. @keyframes width100 {
  81. 0% {
  82. width: 0;
  83. }
  84. 100% {
  85. width: 750rpx;
  86. }
  87. }
  88. @keyframes height100 {
  89. 0% {
  90. height: 0;
  91. }
  92. 100% {
  93. height: 100vh;
  94. }
  95. }