Hi,
I am using Masonry gallery to present different topic pictures and i linked them so when you click on each topic a different pictures pops up.
Is there a way of changing the normal square presentation of the picture? maybe give it a rotating shape or animation?
Thank you.
i don’t know if i really understand what you want but you can change the original setup
.avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
transform: scale(1.05, 1.05);
}
to what you want:
.avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
transform: rotate(25deg);
}