Advertisement
greenmelon

sliding carousel

Dec 20th, 2021
1,792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. <style>
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7.  
  8. #container {
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. min-height: 100vh;
  13. }
  14.  
  15. #carousel, #navigation {
  16. flex: initial;
  17. display: block;
  18. }
  19.  
  20. #carousel {
  21. overflow: hidden;
  22. width: 600px;
  23. height: 300px;
  24. border-radius: 4px;
  25. background-color: #FF9CC5;
  26. }
  27.  
  28. .p-wrapper {
  29. position: relative;
  30. width: 100%;
  31. height: 100%;
  32. transition: transform 0.4s ease-in-out;
  33. }
  34.  
  35. #button_a:checked ~ #carousel .p-wrapper {
  36. -webkit-transform: translateY(0);
  37. transform: translateY(0);
  38. }
  39.  
  40. #button_b:checked ~ #carousel .p-wrapper {
  41. -webkit-transform: translateY(-100%);
  42. transform: translateY(-100%);
  43. }
  44.  
  45. #button_c:checked ~ #carousel .p-wrapper {
  46. -webkit-transform: translateY(-200%);
  47. transform: translateY(-200%);
  48. }
  49.  
  50. #button_d:checked ~ #carousel .p-wrapper {
  51. -webkit-transform: translateY(-300%);
  52. transform: translateY(-300%);
  53. }
  54.  
  55. [class^="panel_"] {
  56. overflow: auto;
  57. position: relative;
  58. width: inherit;
  59. height: inherit;
  60. padding: 48px;
  61. }
  62.  
  63. #navigation {
  64. margin-left: 24px;
  65. }
  66.  
  67. [class^="label_"] {
  68. display: block;
  69. cursor: pointer;
  70. margin: 8px 0;
  71. width: 32px;
  72. height: 32px;
  73. line-height: 32px;
  74. text-align: center;
  75. border-radius: 4px;
  76. color: #444;
  77. background-color: #FF9CC5;
  78. transition: all 0.3s ease;
  79. }
  80.  
  81. [class^="label_"]:hover {
  82. color: #444;
  83. background-color: #ffeed9;
  84. }
  85.  
  86. #button_a:checked ~ #navigation .label_a,
  87. #button_b:checked ~ #navigation .label_b,
  88. #button_c:checked ~ #navigation .label_c,
  89. #button_d:checked ~ #navigation .label_d {
  90. cursor: default;
  91. color: #fff;
  92. background-color: #222;
  93. }
  94. </style>
  95.  
  96. <body>
  97. <div id="container">
  98.  
  99. <input hidden type="radio" name="carousel-control" id="button_a" checked/>
  100. <input hidden type="radio" name="carousel-control" id="button_b"/>
  101. <input hidden type="radio" name="carousel-control" id="button_c"/>
  102. <input hidden type="radio" name="carousel-control" id="button_d"/>
  103.  
  104. <div id="carousel">
  105. <div class="p-wrapper">
  106. <section class="panel_a"> <h2> panel a </h2>stuff goes here <img src="https://64.media.tumblr.com/e7a6122b34eba9cf6a3c2af6f9700e48/tumblr_nht8hgC5br1txyfxdo6_400.gifv" width="auto" height="140px"></section>
  107. <section class="panel_b"> <h2> panel b </h2>stuff goes here <img src="https://64.media.tumblr.com/e7a6122b34eba9cf6a3c2af6f9700e48/tumblr_nht8hgC5br1txyfxdo6_400.gifv" width="auto" height="140px"></section>
  108. <section class="panel_c"> <h2> panel c </h2>stuff goes here <img src="https://64.media.tumblr.com/e7a6122b34eba9cf6a3c2af6f9700e48/tumblr_nht8hgC5br1txyfxdo6_400.gifv" width="auto" height="140px"></section>
  109. <section class="panel_d"> <h2> panel d </h2>stuff goes here <img src="https://64.media.tumblr.com/e7a6122b34eba9cf6a3c2af6f9700e48/tumblr_nht8hgC5br1txyfxdo6_400.gifv" width="auto" height="140px"></section>
  110. </div>
  111. </div>
  112.  
  113. <div id="navigation">
  114. <label for="button_a" class="label_a"> <span> a </span> </label>
  115. <label for="button_b" class="label_b"> <span> b </span> </label>
  116. <label for="button_c" class="label_c"> <span> c </span> </label>
  117. <label for="button_d" class="label_d"> <span> d </span> </label>
  118. </div>
  119.  
  120. </div>
  121. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement