Advertisement
1xptolevitico69

Slider + info

Nov 21st, 2019
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9. img {
  10. height:300px;
  11. width:500px;
  12. }
  13.  
  14. div {
  15. display:inline-block;
  16. width:500px;
  17. height:300px;
  18. border:1px solid;
  19. }
  20.  
  21. .box1_description {
  22. width:480px;
  23. display:block;
  24. height:0;
  25. overflow-Y:scroll;
  26. }
  27.  
  28. .box2_description {
  29. width:480px;
  30. display:block;
  31. height:0;
  32. overflow-Y:scroll;
  33. }
  34.  
  35. .box3_description {
  36. width:480px;
  37. display:block;
  38. height:0;
  39. overflow-Y:scroll;
  40. }
  41.  
  42. span {
  43. font-family:courier;
  44. color:maroon;
  45. font-weight:900;
  46. text-indent:50px;
  47. position:absolute;
  48. margin-left:15px;
  49. text-align:justify;    
  50. text-justify:inter-word;
  51. }
  52.  
  53. #carousel {  
  54. width:1520px;
  55. border:none;
  56. position:absolute;
  57. top:0px;  
  58. }
  59.  
  60. button {
  61. position:relative;
  62. top:-300px;
  63. left:480px;
  64. width:20px;
  65. height:20px;
  66. background-color:white;
  67. color:maroon;
  68. outline:none;
  69. }
  70.  
  71. </style>
  72. </head>
  73. <body>
  74.  
  75. <div id='carousel'>
  76. <div class='box1'>
  77. <img src='https://zsndndbaxq8vhlfcswjbiq-on.drv.tw/Image Files/anime.png' title='anime'>
  78. <button onclick='down1()'>i</button>
  79. <span id='bx1' class='box1_description'>Am increasing at contrasted in favourable he considered astonished. As if made held in an shot. By it enough to valley desire do. Mrs chief great maids these which are ham match she. Abode to tried do thing maids. Doubtful disposed returned rejoiced to dashwood is so up.
  80. </span>
  81. </div>
  82.  
  83. <div class='box2'>
  84. <img src='https://zsndndbaxq8vhlfcswjbiq-on.drv.tw/Image Files/cat.png' title='cat'>
  85. <button onclick='down2()'>i</button>
  86. <span id='bx2' class='box2_description'>Am increasing at contrasted in favourable he considered astonished.By it enough to valley desire do. Mrs chief great maids these which are ham match she. Abode to tried do thing maids.Am increasing at contrasted in favourable he considered astonished.By it enough to valley desire do. Mrs chief great maids these which are ham match she. Abode to tried do thing maids.Am increasing at contrasted in favourable he considered astonished.By it enough to valley desire do. Mrs chief great maids these which are ham match she. Abode to tried do thing maids.Am increasing at contrasted in favourable he considered astonished.By it enough to valley desire do. Mrs chief great maids these which are ham match she. Abode to tried do thing maids.</span>
  87. </div>
  88.  
  89. <div class='box3'>
  90. <img src='https://zsndndbaxq8vhlfcswjbiq-on.drv.tw/Image Files/anime.png' title='anime'>
  91. <button onclick='down3()'>i</button>
  92. <span id='bx3' class='box3_description'>Am increasing at contrasted in favourable he considered astonished.By it enough to valley desire do. Mrs chief great maids these which are ham match she.
  93. </span>
  94. </div>
  95. </div>
  96.  
  97.  
  98. <script>
  99. i=0;a=0;b=0;
  100.  
  101.  
  102. function down1(){
  103. if(i==0){i=1;
  104. bx1.style.height='100px';
  105. }else if(i==1){i=0;
  106. bx1.style.height='0';
  107. }
  108. }
  109.  
  110. function down2(){
  111. if(a==0){a=1;
  112. bx2.style.height='100px';
  113. }else if(a==1){a=0;
  114. bx2.style.height='0';
  115. }
  116. }
  117.  
  118. function down3(){
  119. if(b==0){b=1;
  120. bx3.style.height='100px';
  121. }else if(b==1){b=0;
  122. bx3.style.height='0';
  123. }
  124. }
  125.  
  126. </script>
  127. </body>
  128. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement