Tagged: post slider
I like the “on hover” increase image size effect that I’ve used with the Image element.
Image element
Image Hover effect:
Yes, slightly increase the image size
Is it possible to duplicate that effect with the Post Slider element?
Hey Jagrav!
Not sure if that can be done, could you provide us with a link to the site in question so that we can take a closer look please?
Cheers!
Rikard
I’m getting the following message when trying to send a “Private Content” reply message:
Reply To: Post Slider element hover customization
ERROR: Your reply cannot be empty.
Hi!
Please insert some text into content section of your message plus your private content :)
Regards,
Yigit
Example links are included in Private Content Message:
This page shows an example of the “Image element: Yes, slightly increase the image size” hover effect:
I would like to reproduce that hover effect here in the Post Slider element.
Hi!
Try adding this to your custom CSS.
.slide-image img {
-webkit-transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
transition: all 1.7s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.slide-image:hover img { -webkit-transform: scale(1.1); transform: scale(1.1); }
Regards,
Elliott
Thank you so much Elliott.
It’s working and I like this hover effect :)