Hi
do you think transition effect is possible on .td_social_instagram .td-social-box ?
I have tried many codes but I can’t find the good one.
I want similar effect than .tds-button3 between background and :hover background
here find my code on .td_social_instagram .td-social-box
<code>.td_social_instagram .td-social-box {
background: linear-gradient(156deg, #ffac4f 30%,#cf5665 80%);
background-color: #fff;
padding: 0px 0px;
border-radius: 4px;
}
.td_social_instagram:hover .td-social-box:hover {
background: #ffac4f!important;
}
thank you
Best regards
Hi,
I do not quiet understand what effect do you want to achieve -> https://www.screencast.com/t/kVQuVJXQvjcl please provide some more details.
Thank you!
.tds-button3:before {
content: '';
background-color: #fff;
width: 100%;
height: 100%;
left: 0;
top: 0;
position: absolute;
z-index: -1;
opacity: 0;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}
-
This reply was modified 6 years by
gumball44.
Hi,
On that button sis using this type of code ->https://www.screencast.com/t/cKhAhxorM, but this will not apply on liner gradient, for this type of color you’ll need to use a different code, here is a similar topic- > https://stackoverflow.com/questions/14116689/animating-a-css-gradient-background-on-the-hover-event
Thank you for your understanding!