asimryu

css photo frame animation

May 25th, 2021 (edited)
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7.     <style>
  8.         body{
  9.           background:url('https://images.pexels.com/photos/172277/pexels-photo-172277.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260');
  10.         }
  11.         ul{ margin:0; padding:0; list-style:none; }
  12.         li{
  13.           text-align:center;
  14.           display:inline-block;
  15.           position:relative;
  16.           border:solid 12px #fff;
  17.           background:#fff;
  18.           box-shadow:0 0 15px 0px #555;
  19.           transition:all 1s ease;
  20.           top:50px;
  21.         }
  22.         li:hover{ top:0px; opacity:0.5; }
  23.         li:nth-child(1){ transform:rotate(10deg); }
  24.         li:nth-child(2){ transform:rotate(0deg); }
  25.         li:nth-child(3){ transform:rotate(-10deg); }
  26.         li:nth-child(4){ transform:rotate(20deg); }
  27.         li:nth-child(5){ transform:rotate(-20deg); }
  28.         p{ margin:0; }
  29.     </style>
  30. </head>
  31. <body>
  32.     <ul>
  33.         <li>
  34.             <img src="https://placeimg.com/300/300/nature" width="200">
  35.             <p>image #1</p>
  36.         </li>
  37.         <li>
  38.             <img src="https://placeimg.com/300/300/animals" width="200"/>
  39.             <p>image #2</p>
  40.         </li>
  41.         <li>
  42.             <img src="https://placeimg.com/300/300/people" width="200"/>
  43.             <p>image #3</p>
  44.         </li>
  45.         <li>
  46.             <img src="https://placeimg.com/300/300/arch" width="200"/>
  47.             <p>image #4</p>
  48.         </li>
  49.         <li>
  50.             <img src="https://placeimg.com/300/300/tech" width="200"/>
  51.             <p>image #5</p>
  52.         </li>
  53.     </ul>
  54.     <!-- Source code from https://codemyui.com/polaroid-images-gallery-in-pure-css/ -->
  55. </body>
  56. </html>
Add Comment
Please, Sign In to add comment