Site logo

Archived topic

movement effect over the posts photos

1 reply · Started by Anonymous on April 12, 2016

Viewing posts 1–2 of 2

Hi,
I would like to know if there is the option with the addons to produce a kind of movement in the photos posts when you pass with the cursor over them. Here an example: http://masedimburgo.com/
I think it is a very nice trendy option :-)
Thanks,
Rosa

Hi Rosa,

Give this CSS a try:

.post-image {
  position: relative;
  overflow: hidden;
}
.post-image img {
  max-width: 100%;
  
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-image:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

Adding CSS: https://generatepress.com/knowledgebase/adding-css/

This archived topic is closed to new replies.