Advertisement
ikai2

change image on hover

Sep 13th, 2022 (edited)
762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.37 KB | None | 0 0
  1. .stacked-images {
  2.   display: grid;
  3.   place-items: end center;
  4. }
  5. .stacked-images > * {
  6.   grid-column: 1 / -1;
  7.   grid-row: 1 / -1;
  8. }
  9. .stacked-images > [data-pf-type="Image"]:last-of-type {
  10.   opacity: 0;
  11.   transition: all 250ms ease-in-out;
  12.   visibility: hidden;
  13. }
  14. .stacked-images:hover > [data-pf-type="Image"]:last-of-type {
  15.   opacity: 1;
  16.   visibility: visible;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement