choose_actions.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .actions_bg {
  2. z-index: 10000;
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. width: 100vw;
  7. height: 100vh;
  8. background-color: rgba($color: #000, $alpha: 1);
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: flex-end;
  13. }
  14. .action_btn {
  15. width: 698px;
  16. height: 128px;
  17. border-radius: 64px;
  18. color: #000;
  19. margin-top: 26px;
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. justify-content: center;
  24. position: relative;
  25. background-color: #f0f0f0;
  26. }
  27. .cardShowAni {
  28. animation: showAni 0.2s linear forwards;
  29. }
  30. .cardShowAni1 {
  31. animation: showAni1 0.2s linear forwards;
  32. }
  33. .btnAni{
  34. opacity: 0;
  35. animation: showAni2 0.2s 0.5s linear forwards;
  36. }
  37. @keyframes showAni {
  38. 0% {
  39. opacity: 0;
  40. transform: translateY(300px);
  41. }
  42. 100% {
  43. opacity: 1;
  44. transform: translateY(0px);
  45. }
  46. }
  47. @keyframes showAni1 {
  48. 0% {
  49. opacity: 0;
  50. transform: translateY(300px);
  51. }
  52. 100% {
  53. opacity: 0.75;
  54. transform: translateY(0px);
  55. }
  56. }
  57. @keyframes showAni2 {
  58. 0% {
  59. opacity: 0;
  60. // transform: translateY(300px);
  61. }
  62. 100% {
  63. opacity: 1;
  64. // transform: translateY(0px);
  65. }
  66. }
  67. .action_btn_img{
  68. position: absolute;
  69. left: 40px;
  70. top:40px;
  71. width: 48px;
  72. height: 48px;
  73. }
  74. .or_line{
  75. width: 255px;
  76. height: 1px;
  77. background-color: #fff;
  78. }