Site logo

movement effect over the posts photos

Home Forums Support movement effect over the posts photos

Home Forums Support movement effect over the posts photos

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #186170
    Rosa

    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

    #186241
    Tom
    Lead Developer
    Lead Developer

    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/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.