bltzle Posted May 22, 2022 Share Posted May 22, 2022 (edited) Hi I'm trying to adjust the hover timing for jasper to be slower. I don't know what css to use sadly even after inspecting the page. I want the timings to be slower like: https://www.cynthiahedesign.com/ my current website: https://www.matthewbaltzelle.com/ any help is appreciated! Edited May 22, 2022 by bltzle Link to comment
derricksrandomviews Posted May 22, 2022 Share Posted May 22, 2022 I have this code which slows up the hover transition for my site. <style> #projectThumbs .project:hover .project-title { transition: 2.0s ease-in-out ; } </style> <style>a.project img { filter: grayscale(0); } a.project:hover img { transition: 2.0s ease-in-out ; } </style> Assuming that the images are on a portfolio or project page. This code should work for you in advanced header of the page: <style> a.project:hover img { transition: 2.0s ease-in-out ; } </style> Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment