Advertisement
izuemis

kokoro positioning

Sep 7th, 2022
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. <style>
  2.  
  3. #text01 {
  4. position: absolute;
  5. right: .75em;
  6. top: .75em;
  7. }
  8.  
  9. #container02 {
  10. position: absolute;
  11. left: -1em;
  12. top: 2em;
  13. }
  14.  
  15. #container03 {
  16. position: absolute;
  17. left: -1em;
  18. bottom: 1.75em;
  19. }
  20.  
  21. #container04, #container05 {
  22. position: absolute;
  23. right: -1em;
  24. top: 2.75em;
  25. -webkit-animation: scale-in-hor-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  26. animation: scale-in-hor-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  27. }
  28. /* ----------------------------------------------
  29. * Generated by Animista on 2022-9-7 16:54:29
  30. * Licensed under FreeBSD License.
  31. * See http://animista.net/license for more info.
  32. * w: http://animista.net, t: @cssanimista
  33. * ---------------------------------------------- */
  34.  
  35. /**
  36. * ----------------------------------------
  37. * animation scale-in-hor-left
  38. * ----------------------------------------
  39. */
  40. @-webkit-keyframes scale-in-hor-left {
  41. 0% {
  42. -webkit-transform: scaleX(0);
  43. transform: scaleX(0);
  44. -webkit-transform-origin: 0% 0%;
  45. transform-origin: 0% 0%;
  46. opacity: 1;
  47. }
  48. 100% {
  49. -webkit-transform: scaleX(1);
  50. transform: scaleX(1);
  51. -webkit-transform-origin: 0% 0%;
  52. transform-origin: 0% 0%;
  53. opacity: 1;
  54. }
  55. }
  56. @keyframes scale-in-hor-left {
  57. 0% {
  58. -webkit-transform: scaleX(0);
  59. transform: scaleX(0);
  60. -webkit-transform-origin: 0% 0%;
  61. transform-origin: 0% 0%;
  62. opacity: 1;
  63. }
  64. 100% {
  65. -webkit-transform: scaleX(1);
  66. transform: scaleX(1);
  67. -webkit-transform-origin: 0% 0%;
  68. transform-origin: 0% 0%;
  69. opacity: 1;
  70. }
  71. }
  72.  
  73. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement