HudsonJones Posted December 14, 2020 Share Posted December 14, 2020 Hi, I'm trying to add a bit of code to make my summary images scale to 1.1 (over 3 secs) on hover and scale back to 1.0 (over 3 secs) on not hover. I've managed this on on-page block images like this: .sqs-block-image .design-layout-inline:hover img{transform:scale(1.1);transition: 3s;} .sqs-block-image .design-layout-inline:not(:hover) img{transform:scale(1.0);transition: 3s;} but can't figure it for summary images. Can anyone help? Thanks Link to comment
tuanphan Posted December 16, 2020 Share Posted December 16, 2020 .summary-item:hover img { transform: scale(1.3); transition: all 3s; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.