Advertisement
1xptolevitico69

Amazing CSS Scroll Snapping slider flex direction row

Dec 31st, 2021
1,459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Amazing CSS Scroll Snapping slider flex direction row</title>
  8.   <style>
  9.     body {
  10.       margin: 0;
  11.     }
  12.  
  13.     .container {
  14.       scroll-snap-points-x: repeat(800px);
  15.       scroll-snap-type: x mandatory;
  16.       overflow-x: scroll;
  17.       width: 800px;
  18.       height: 450px;
  19.       border: 5px solid red;
  20.       position: absolute;
  21.     }
  22.  
  23.     .web1 {
  24.       position: absolute;
  25.       display: flex;
  26.       width: 100%;
  27.       height: 100%;
  28.     }
  29.  
  30.     .image {
  31.       scroll-snap-align: start;
  32.       padding: 0 1px;
  33.       width: 100%;
  34.       height: auto;
  35.     }
  36.  
  37. .clone{
  38. position:absolute;
  39. top:0;
  40. right:0;
  41. }
  42.  
  43. .clone img{
  44. width:200px;
  45. }
  46.  
  47.  
  48.  
  49.  
  50.  
  51.   </style>
  52. </head>
  53.  
  54. <body>
  55.  
  56.   <section class='container'>
  57.     <div id='web1' class='web1'>
  58.       <img class='image' src='https://1xpto.netlify.app/pics/1.jpg' />
  59.       <img class='image' src='https://1xpto.netlify.app/pics/3.jpg' />
  60.       <img class='image' src='https://1xpto.netlify.app/pics/4.jpg' />
  61.       <img class='image' src='https://1xpto.netlify.app/pics/7.jpg' />
  62.       <img class='image' src='https://1xpto.netlify.app/pics/car.jpeg' />
  63.       <img class='image' src='https://1xpto.netlify.app/pics/pic1.jpg' />
  64.       <img class='image' src='https://1xpto.netlify.app/pics/pic2.png' />
  65.       <img class='image' src='https://1xpto.netlify.app/pics/pic3.png' />
  66.     </div>
  67.   </section>
  68.  
  69.     <a class='clone' href='https://www.youtube.com/channel/UCqLpDK0eOsG1eEeF9jOUZkw'><img src='https://1xpto.netlify.app/pics/clone.png'/></a>
  70.  
  71.  
  72.  
  73.  
  74. </body>
  75.  
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement