jquery.gallery.scss 333 B

123456789101112131415161718192021222324
  1. .gallery {
  2. list-style: none;
  3. padding: 0;
  4. overflow: hidden;
  5. position: relative;
  6. &:focus {
  7. outline: none;
  8. }
  9. .gallery-item {
  10. position: absolute;
  11. opacity: 0;
  12. filter: blur(15px);
  13. transition: opacity 0.5s ease-in, filter 0.5s ease-in;
  14. &.current {
  15. opacity: 1;
  16. filter: blur(0);
  17. }
  18. }
  19. }
  20. // .gallery .gallery-item