1.照片墙.css 249 B

123456789101112131415161718
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. body {
  6. background: rgba(0, 0, 0, .5);
  7. }
  8. img {
  9. width: 120px;
  10. height: 120px;
  11. position: absolute;
  12. top: -120px;
  13. left: -120px;
  14. transition: all 2s ease;
  15. /* transition-delay: 0ms; */
  16. }